icingaweb2/public/css/icinga/base.less

64 lines
959 B
Plaintext

/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
// Make padding not affect the final computed width of an element
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
.box-sizing(inherit);
}
a {
color: @link-color;
font-size: @font-size;
font-weight: @font-weight-bold;
line-height: @line-height;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
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;
a {
font-size: inherit;
line-height: inherit;
}
}
h2 {
font-size: 16px;
line-height: 19px;
font-weight: normal;
}
p {
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;
}