icingaweb2/modules/doc/public/css/module.less

89 lines
1.4 KiB
Plaintext
Raw Normal View History

/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
2014-11-20 15:52:47 +01:00
.uppercase {
text-transform: uppercase;
}
.bold {
font-weight: bold;
}
.gradient(@a: #f9f9f9; @b: #f5f5f5) {
background: @a;
background: -moz-linear-gradient(top, @a, 0%, @b, 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @a), color-stop(100%, @b));
background: -webkit-linear-gradient(top, @a 0%, @b 100%);
background: -o-linear-gradient(top, @a 0%, @b 100%);
background: -ms-linear-gradient(top, @a 0%, @b 100%);
background: linear-gradient(to bottom, @a 0%, @b 100%);
}
table {
// Reset
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
a[name]:focus {
outline: 0;
}
2014-11-20 15:52:47 +01:00
th, td {
padding: 0.25rem;
text-align: left;
2014-11-20 15:52:47 +01:00
line-height: 1.25rem;
color: #666;
}
2014-11-20 15:52:47 +01:00
td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
tbody tr:nth-child(odd) {
.gradient;
}
tbody tr:nth-child(even) {
background: #fff;
}
tbody tr:hover {
background: #666;
td {
color: #fff;
}
}
@icinga: #049baf;
thead {
th {
color: @icinga;
2015-10-01 02:58:54 +02:00
.uppercase();
2014-11-20 15:52:47 +01:00
.bold;
}
border-bottom: 0.25rem solid @icinga;
}
code {
2015-10-01 02:58:54 +02:00
color: @icinga-blue;
font-family: @font-family-fixed;
2014-11-20 15:52:47 +01:00
}
pre > code {
2015-10-01 02:58:54 +02:00
color: inherit;
2014-05-23 14:17:37 +02:00
}
ul.toc {
margin: 0;
padding: 0 0 0 1em;
}
.search-highlight {
color: #FBE012;
2015-10-01 02:58:54 +02:00
background: @icinga-blue;
}