icingaweb2/public/css/icinga/base.less

67 lines
965 B
Plaintext
Raw Normal View History

// Make padding not affect the final computed width of an element
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
.box-sizing(inherit);
}
2015-09-23 11:13:58 +02:00
a {
color: @link-color;
font-size: @font-size;
2015-09-23 11:13:58 +02:00
font-weight: @font-weight-bold;
line-height: @line-height;
2015-09-23 11:13:58 +02:00
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
body {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
font-size: @font-size;
}
2015-09-23 11:04:59 +02:00
h1 {
font-size: 18px;
line-height: 22px;
font-weight: normal;
2015-09-23 13:14:26 +02:00
a {
font-size: inherit;
line-height: inherit;
}
2015-09-23 11:04:59 +02:00
}
h2 {
font-size: 16px;
line-height: 19px;
font-weight: normal;
}
p {
2015-09-23 12:58:15 +02:00
color: @text-color;
font-size: @font-size;
line-height: @line-height;
// Remove default margin
margin: 0;
}
tr.active {
background-color: @gray-lighter;
}
tr:hover {
background-color: @gray-lightest;
}
2015-09-23 13:32:03 +02:00
.text-small {
font-size: @font-size-small;
color: @text-color-light;
}