summaryrefslogtreecommitdiffstats
path: root/web/input/media/plugins.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/input/media/plugins.css')
-rw-r--r--web/input/media/plugins.css134
1 files changed, 134 insertions, 0 deletions
diff --git a/web/input/media/plugins.css b/web/input/media/plugins.css
new file mode 100644
index 0000000..552284f
--- /dev/null
+++ b/web/input/media/plugins.css
@@ -0,0 +1,134 @@
1/*
2 * Nagios Plugins style sheet.
3 *
4 * Color scheme:
5 *
6 * - See <http://colorschemedesigner.com/#3y21T--rOw0w0>.
7 * - Additionally, we use the CSS color "dimgray" (#696969) for stuff like the
8 * breadcrumb navigation and the footer.
9 */
10
11@import url("https://fonts.googleapis.com/css?family=Bitter");
12@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
13@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro");
14
15body {
16 max-width: 45em;
17 margin: 1em auto;
18 font-family: "Source Sans Pro", sans-serif;
19 color: #000;
20 text-rendering: optimizeLegibility;
21 -webkit-hyphens: auto;
22 -moz-hyphens: auto;
23 -ms-hyphens: auto;
24 -o-hyphens: auto;
25 hyphens: auto;
26}
27
28h1, h2, h3, h4, h5, h6 {
29 font-family: "Bitter", serif;
30 color: #004e8f;
31}
32
33code, kbd {
34 font-family: "Source Code Pro", monospace;
35 white-space: pre;
36}
37
38pre {
39 font-family: "Source Code Pro", monospace;
40 font-size: small;
41}
42
43div#breadcrumb {
44 padding: 1em 1em 0.2em;
45}
46
47div#content {
48 padding: 0.2em 1em 1em;
49}
50
51div#footer {
52 padding: 1em;
53}
54
55div#menu {
56 padding: 0.6em 0 0.6em 0;
57 background-color: #1b476b;
58 font-weight: bold;
59}
60
61div#menu span {
62 padding: 0.6em;
63}
64
65div#menu span#current {
66 color: #fff;
67 background-color: #5a95c7;
68}
69
70div#menu a {
71 color: #fff;
72 text-decoration: none;
73 -webkit-transition-property: color;
74 -moz-transition-property: color;
75 -ms-transition-property: color;
76 -o-transition-property: color;
77 transition-property: color;
78 -webkit-transition-duration: 0.3s;
79 -moz-transition-duration: 0.3s;
80 -ms-transition-duration: 0.3s;
81 -o-transition-duration: 0.3s;
82 transition-duration: 0.3s;
83}
84
85div#menu a:hover {
86 color: #eeb76b;
87}
88
89table /* Nginx Fancy Index. */ {
90 font-family: "Source Code Pro", monospace;
91 font-size: small;
92}
93
94div#content a,
95table a {
96 color: #3283c7;
97 text-decoration: none;
98 border-bottom: 1px dotted #3283c7;
99}
100
101div#content a:hover,
102table a:hover {
103 color: #3283c7; /* Overwrite Fancy Index CSS. */
104 border-bottom: 1px solid #3283c7;
105}
106
107div#breadcrumb {
108 color: #696969;
109 font-size: small;
110}
111
112div#breadcrumb span#release {
113 float: right;
114 font-weight: bold;
115}
116
117div#footer {
118 color: #696969;
119 text-align: center;
120 font-size: small;
121 line-height: 150%;
122}
123
124div#breadcrumb a,
125div#footer a {
126 color: #696969;
127 text-decoration: none;
128 border-bottom: 1px dotted #696969;
129}
130
131div#breadcrumb a:hover,
132div#footer a:hover {
133 border-bottom: 1px solid #696969;
134}