mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 11:19:14 +02:00
29 lines
414 B
Plaintext
29 lines
414 B
Plaintext
// Make padding not affect the final computed width of an element
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
.box-sizing(inherit);
|
|
}
|
|
|
|
body {
|
|
background-color: @body-bg-color;
|
|
color: @text-color;
|
|
font-family: @font-family;
|
|
font-size: @font-size;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16px;
|
|
line-height: 19px;
|
|
font-weight: normal;
|
|
}
|