2015-09-23 13:41:22 +02:00
|
|
|
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
2015-09-23 11:00:51 +02:00
|
|
|
// 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;
|
2015-09-23 12:57:42 +02:00
|
|
|
font-size: @font-size;
|
2015-09-23 11:13:58 +02:00
|
|
|
font-weight: @font-weight-bold;
|
2015-09-23 12:57:42 +02:00
|
|
|
line-height: @line-height;
|
2015-09-23 11:13:58 +02:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-23 11:00:51 +02:00
|
|
|
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;
|
|
|
|
}
|
2015-09-23 11:30:22 +02:00
|
|
|
|
|
|
|
p {
|
2015-09-23 12:58:15 +02:00
|
|
|
color: @text-color;
|
|
|
|
font-size: @font-size;
|
|
|
|
line-height: @line-height;
|
|
|
|
// Remove default margin
|
2015-09-23 11:30:22 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
2015-09-24 10:26:14 +02:00
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 0 1px;
|
|
|
|
}
|
2015-09-24 15:02:20 +02:00
|
|
|
|
|
|
|
td {
|
|
|
|
padding: @vertical-padding @horizontal-padding;
|
|
|
|
}
|