Files
kiwistation/nano/styles/_document.less
T
Bjorn Neergaard 425c848078 Fix some rendering bugs on IE8, fix fancy chrome vis
Also reorganize some NanoUI files
2015-12-17 10:17:58 -06:00

40 lines
581 B
Plaintext

@import "_config";
@import "_util";
html {
min-height: 100%;
cursor: default; // Reset the cursor.
}
body {
min-height: 100%;
height: 100%;
background-color: @background-end; // Fallback for old browsers.
font-family: @font;
font-size: @fontsize;
color: @text;
}
h1 {
font-size: @fontsize + 6px;
margin: 0;
padding: 6px 0;
}
h2 {
&:extend(h1);
font-size: @fontsize + 4px;
}
h3 {
&:extend(h1);
font-size: @fontsize + 2px;
}
hr {
background-color: @rule;
border: none;
}