icingaweb2/public/css/icinga/base.less

84 lines
1.4 KiB
Plaintext
Raw Normal View History

/*! 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);
}
2015-09-23 11:13:58 +02:00
a {
// Reset defaults
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;
}
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
}
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;
}
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;
width: 100%;
2015-09-24 10:26:14 +02:00
}
td {
padding: @vertical-padding / 2 @horizontal-padding / 2;
}
2015-09-29 17:03:26 +02:00
@media print {
.dont-print {
display:none;
}
}