summaryrefslogtreecommitdiffstats
path: root/web/content/media/plugins.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/content/media/plugins.css')
-rw-r--r--web/content/media/plugins.css128
1 files changed, 128 insertions, 0 deletions
diff --git a/web/content/media/plugins.css b/web/content/media/plugins.css
new file mode 100644
index 0000000..7910aad
--- /dev/null
+++ b/web/content/media/plugins.css
@@ -0,0 +1,128 @@
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}
36
37pre {
38 font-family: "Source Code Pro", monospace;
39 font-size: small;
40}
41
42div#breadcrumb {
43 padding: 1em 1em 0.2em;
44}
45
46div#content {
47 padding: 0.2em 1em 1em;
48}
49
50div#footer {
51 padding: 1em;
52}
53
54div#menu {
55 padding: 0.6em 0 0.6em 0;
56 background-color: #1b476b;
57 font-weight: bold;
58}
59
60div#menu span {
61 padding: 0.6em;
62}
63
64div#menu span.current {
65 color: #fff;
66 background-color: #5a95c7;
67}
68
69div#menu a {
70 color: #fff;
71 text-decoration: none;
72 -webkit-transition-property: color;
73 -moz-transition-property: color;
74 -ms-transition-property: color;
75 -o-transition-property: color;
76 transition-property: color;
77 -webkit-transition-duration: 0.3s;
78 -moz-transition-duration: 0.3s;
79 -ms-transition-duration: 0.3s;
80 -o-transition-duration: 0.3s;
81 transition-duration: 0.3s;
82}
83
84div#menu a:hover {
85 color: #eeb76b;
86}
87
88table /* Nginx Fancy Index. */ {
89 font-family: "Source Code Pro", monospace;
90 font-size: small;
91}
92
93div#content a,
94table a {
95 color: #3283c7;
96 text-decoration: none;
97 border-bottom: 1px dotted #3283c7;
98}
99
100div#content a:hover,
101table a:hover {
102 color: #3283c7; /* Overwrite Fancy Index CSS. */
103 border-bottom: 1px solid #3283c7;
104}
105
106div#breadcrumb {
107 color: #696969;
108 font-size: small;
109}
110
111div#footer {
112 color: #696969;
113 text-align: center;
114 font-size: small;
115 line-height: 150%;
116}
117
118div#breadcrumb a,
119div#footer a {
120 color: #696969;
121 text-decoration: none;
122 border-bottom: 1px dotted #696969;
123}
124
125div#breadcrumb a:hover,
126div#footer a:hover {
127 border-bottom: 1px solid #696969;
128}