diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-29 22:03:24 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-29 22:03:24 (GMT) |
commit | 0b6423f9c99d9edf8c96fefd0f6c453859395aa1 (patch) | |
tree | 1c2b6b21704a294940f87c7892676998d8371707 /web/content/media | |
download | site-0b6423f9c99d9edf8c96fefd0f6c453859395aa1.tar.gz |
Import Nagios Plugins site
Import the Nagios Plugins web site, Cronjobs, infrastructure scripts,
and configuration files.
Diffstat (limited to 'web/content/media')
-rw-r--r-- | web/content/media/favicon.ico | bin | 0 -> 4286 bytes | |||
-rw-r--r-- | web/content/media/github.png | bin | 0 -> 7927 bytes | |||
-rw-r--r-- | web/content/media/plugins.css | 128 |
3 files changed, 128 insertions, 0 deletions
diff --git a/web/content/media/favicon.ico b/web/content/media/favicon.ico new file mode 100644 index 0000000..76ae569 --- /dev/null +++ b/web/content/media/favicon.ico | |||
Binary files differ | |||
diff --git a/web/content/media/github.png b/web/content/media/github.png new file mode 100644 index 0000000..1e19c21 --- /dev/null +++ b/web/content/media/github.png | |||
Binary files differ | |||
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 | |||
15 | body { | ||
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 | |||
28 | h1, h2, h3, h4, h5, h6 { | ||
29 | font-family: "Bitter", serif; | ||
30 | color: #004e8f; | ||
31 | } | ||
32 | |||
33 | code, kbd { | ||
34 | font-family: "Source Code Pro", monospace; | ||
35 | } | ||
36 | |||
37 | pre { | ||
38 | font-family: "Source Code Pro", monospace; | ||
39 | font-size: small; | ||
40 | } | ||
41 | |||
42 | div#breadcrumb { | ||
43 | padding: 1em 1em 0.2em; | ||
44 | } | ||
45 | |||
46 | div#content { | ||
47 | padding: 0.2em 1em 1em; | ||
48 | } | ||
49 | |||
50 | div#footer { | ||
51 | padding: 1em; | ||
52 | } | ||
53 | |||
54 | div#menu { | ||
55 | padding: 0.6em 0 0.6em 0; | ||
56 | background-color: #1b476b; | ||
57 | font-weight: bold; | ||
58 | } | ||
59 | |||
60 | div#menu span { | ||
61 | padding: 0.6em; | ||
62 | } | ||
63 | |||
64 | div#menu span.current { | ||
65 | color: #fff; | ||
66 | background-color: #5a95c7; | ||
67 | } | ||
68 | |||
69 | div#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 | |||
84 | div#menu a:hover { | ||
85 | color: #eeb76b; | ||
86 | } | ||
87 | |||
88 | table /* Nginx Fancy Index. */ { | ||
89 | font-family: "Source Code Pro", monospace; | ||
90 | font-size: small; | ||
91 | } | ||
92 | |||
93 | div#content a, | ||
94 | table a { | ||
95 | color: #3283c7; | ||
96 | text-decoration: none; | ||
97 | border-bottom: 1px dotted #3283c7; | ||
98 | } | ||
99 | |||
100 | div#content a:hover, | ||
101 | table a:hover { | ||
102 | color: #3283c7; /* Overwrite Fancy Index CSS. */ | ||
103 | border-bottom: 1px solid #3283c7; | ||
104 | } | ||
105 | |||
106 | div#breadcrumb { | ||
107 | color: #696969; | ||
108 | font-size: small; | ||
109 | } | ||
110 | |||
111 | div#footer { | ||
112 | color: #696969; | ||
113 | text-align: center; | ||
114 | font-size: small; | ||
115 | line-height: 150%; | ||
116 | } | ||
117 | |||
118 | div#breadcrumb a, | ||
119 | div#footer a { | ||
120 | color: #696969; | ||
121 | text-decoration: none; | ||
122 | border-bottom: 1px dotted #696969; | ||
123 | } | ||
124 | |||
125 | div#breadcrumb a:hover, | ||
126 | div#footer a:hover { | ||
127 | border-bottom: 1px solid #696969; | ||
128 | } | ||