2015-02-03 16:27:59 +01:00
|
|
|
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
|
2014-02-18 19:39:54 +01:00
|
|
|
|
|
|
|
/*** Base rules ***/
|
|
|
|
* {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2014-06-05 05:22:26 +02:00
|
|
|
html {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2014-03-04 11:39:29 +01:00
|
|
|
img {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:39:54 +01:00
|
|
|
/*
|
|
|
|
TODO: -xy-text-resize-dings
|
|
|
|
*/
|
|
|
|
|
2014-03-20 12:18:00 +01:00
|
|
|
html, body, form {
|
2014-02-18 19:39:54 +01:00
|
|
|
/* TODO: Really 0 ? */
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2014-11-06 00:40:44 +01:00
|
|
|
font-family: Calibri, Helvetica, sans-serif;
|
2014-11-06 22:03:03 +01:00
|
|
|
color: #666;
|
2014-02-18 19:39:54 +01:00
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #333;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: black;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-11-17 16:54:29 +01:00
|
|
|
/* W3C Recommendation <http://www.w3.org/TR/CSS21/sample.html> (except h4) */
|
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
color: @colorTextDefault;
|
|
|
|
border-bottom: 2px solid @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.17em;
|
|
|
|
color: @colorTextDefault;
|
|
|
|
border-bottom: 1px solid @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1em;
|
|
|
|
color: @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: .83em;
|
|
|
|
border-bottom: 1px solid @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: .75em;
|
|
|
|
color: @colorPetrol;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-11-19 08:49:58 +01:00
|
|
|
button {
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:39:54 +01:00
|
|
|
#fontsize-calc {
|
2014-10-27 09:18:41 +01:00
|
|
|
display: none;
|
2014-02-18 19:39:54 +01:00
|
|
|
width: 1000em;
|
|
|
|
height: 1em;
|
|
|
|
font-size: 1em;
|
|
|
|
position: absolute;
|
|
|
|
top: -2em;
|
|
|
|
}
|
|
|
|
/*** END of Base rules */
|
|
|
|
|
|
|
|
|