summaryrefslogtreecommitdiffstats
path: root/web/input/resources/plugins.css
blob: cf2390f30c2eface68628cc3a39a371e1a188ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
 * Nagios Plugins style sheet.
 * 
 * Color scheme:
 *
 * - See <http://colorschemedesigner.com/#3y21T--rOw0w0>.
 * - Additionally, we use the CSS color "dimgray" (#696969) for stuff like the
 *   breadcrumb navigation and the footer, and a light gray (#E6E6E6) as a
 *   background color.
 */

@import url("https://fonts.googleapis.com/css?family=Bitter");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro");

body {
    font-family: "Source Sans Pro", sans-serif;
    color: #000;
    text-rendering: optimizeLegibility;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bitter", serif;
    color: #004e8f;
}

code, kbd {
    font-family: "Source Code Pro", monospace;
    white-space: pre;
}

pre {
    font-family: "Source Code Pro", monospace;
    font-size: small;
}

div#github-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    border-style: none;
}

div#feed-area {
    float: right;
    margin: 150px 40px 1ex 1em;
    color: #696969;
    text-align: center;
    font-size: small;
    font-style: italic;
    font-weight: bold;
    white-space: nowrap;
}

div#feed-buttons {
    margin-top: 1ex;
    padding: 5px;
    background-color: #e6e6e6;
    border-style: none;
    border-radius: 1em;
}

div#feed-buttons a img {
    margin: 5px;
    vertical-align: middle;
    border-style: none;
}

div#page {
    max-width: 45em;
    margin: 1em auto;
}

div#breadcrumb {
    padding: 1em 1em 0.2em;
}

div#content {
    padding: 0.2em 1em 1em;
}

div#footer {
    padding: 1em;
}

div#menu {
    padding: 0.6em 0 0.6em 0;
    background-color: #1b476b;
    font-weight: bold;
}

div#menu span {
    padding: 0.6em;
}

div#menu span#current {
    color: #fff;
    background-color: #5a95c7;
}

div#menu a {
    color: #fff;
    text-decoration: none;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

div#menu a:hover {
    color: #eeb76b;
}

table /* Nginx Fancy Index. */ {
    font-family: "Source Code Pro", monospace;
    font-size: small;
}

div#content a,
table a {
    color: #3283c7;
    text-decoration: none;
    border-bottom: 1px dotted #3283c7;
}

div#content a:hover,
table a:hover {
    color: #3283c7; /* Overwrite Fancy Index CSS. */
    border-bottom: 1px solid #3283c7;
}

div#breadcrumb {
    color: #696969;
    font-size: small;
}

div#breadcrumb span#release {
    float: right;
    font-weight: bold;
}

div#footer {
    color: #696969;
    text-align: center;
    font-size: small;
    line-height: 150%;
}

div#breadcrumb a,
div#footer a {
    color: #696969;
    text-decoration: none;
    border-bottom: 1px dotted #696969;
}

div#breadcrumb a:hover,
div#footer a:hover {
    border-bottom: 1px solid #696969;
}

p#news-footer {
    color: #696969;
    text-align: center;
    font-size: small;
}