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 {
|
2015-09-25 16:46:01 +02:00
|
|
|
// Reset defaults
|
2015-09-25 00:16:08 +02:00
|
|
|
color: inherit;
|
2015-09-23 11:13:58 +02:00
|
|
|
font-weight: @font-weight-bold;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 10:23:33 +02:00
|
|
|
blockquote {
|
|
|
|
border-left: 6px solid @gray-light;
|
|
|
|
color: @text-color-light;
|
|
|
|
// Reset default margin
|
|
|
|
margin: 0;
|
|
|
|
font-family: @font-family-fixed;
|
|
|
|
padding: @vertical-padding @horizontal-padding;
|
|
|
|
}
|
|
|
|
|
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 {
|
2015-10-01 23:01:55 +02:00
|
|
|
border-bottom: 1px solid @gray-lightest;
|
2015-09-23 11:04:59 +02:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: normal;
|
2015-09-29 10:23:33 +02:00
|
|
|
line-height: 22px;
|
2015-09-23 11:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2015-10-01 23:01:55 +02:00
|
|
|
border-bottom: 1px solid @gray-lightest;
|
2015-09-23 11:04:59 +02:00
|
|
|
font-size: 16px;
|
|
|
|
font-weight: normal;
|
2015-09-29 10:23:33 +02:00
|
|
|
line-height: 19px;
|
2015-09-23 11:04:59 +02:00
|
|
|
}
|
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
|
|
|
|
2015-09-24 17:23:11 +02:00
|
|
|
pre {
|
|
|
|
background-color: @gray-lightest;
|
|
|
|
color: @text-color-light;
|
|
|
|
font-family: @font-family-fixed;
|
|
|
|
padding: @vertical-padding @horizontal-padding;
|
|
|
|
}
|
|
|
|
|
2015-09-24 10:26:14 +02:00
|
|
|
table {
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 0 1px;
|
2015-09-24 17:23:26 +02:00
|
|
|
width: 100%;
|
2015-09-24 10:26:14 +02:00
|
|
|
}
|
2015-09-24 15:02:20 +02:00
|
|
|
|
|
|
|
td {
|
2015-09-24 15:04:22 +02:00
|
|
|
padding: @vertical-padding / 2 @horizontal-padding / 2;
|
2015-09-24 15:02:20 +02:00
|
|
|
}
|
2015-09-29 17:03:26 +02:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
.dont-print {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
}
|