tenna
Version:
A node js application that lets you easily stream most videos from any PC/laptop in your home network, to other devices in the network with a browser.
38 lines (33 loc) • 798 B
text/less
//
// Code (inline and blocK)
// --------------------------------------------------
// Inline and block code styles
code,
kdb,
pre,
samp {
font-family: @font-family-monospace;
}
// Inline code
code {
font-size: 75%;
color: @code-color;
background-color: @code-bg;
border-radius: @border-radius-base;
}
// Blocks of code
pre {
padding: ((@line-height-computed - 6) / 3);
margin: 0 0 (@line-height-computed / 2);
font-size: (@font-size-base - 5); // 18px to 13px
line-height: @line-height-base;
color: @pre-color;
background-color: @pre-bg;
border: 2px solid @pre-border-color;
border-radius: @pre-border-radius;
white-space: pre;
}
// Enable scrollable blocks of code
.pre-scrollable {
max-height: @pre-scrollable-max-height;
}