CSS: Move body style to #layout

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-04 16:27:02 +01:00
parent 6a22b03367
commit 5cf4790856
1 changed files with 9 additions and 9 deletions

View File

@ -38,15 +38,6 @@ blockquote {
padding: 0.667em 0.333em;
}
body {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
font-size: @font-size;
// Set line-height w/o unit so that the line-height is dynamically calculated as font-size * line-height
line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {
border-bottom: 1px solid @gray-lighter;
font-weight: @font-weight-bold;
@ -107,6 +98,15 @@ td, th {
}
}
#layout {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
font-size: @font-size;
// Set line-height w/o unit so that the line-height is dynamically calculated as font-size * line-height
line-height: 1.2;
}
@media print {
.dont-print {
display: none;