diff options
Diffstat (limited to 'web/input/resources')
| -rw-r--r-- | web/input/resources/favicon.ico | bin | 0 -> 4286 bytes | |||
| -rw-r--r-- | web/input/resources/github.png | bin | 0 -> 7927 bytes | |||
| -rw-r--r-- | web/input/resources/plugins.css | 134 |
3 files changed, 134 insertions, 0 deletions
diff --git a/web/input/resources/favicon.ico b/web/input/resources/favicon.ico new file mode 100644 index 0000000..76ae569 --- /dev/null +++ b/web/input/resources/favicon.ico | |||
| Binary files differ | |||
diff --git a/web/input/resources/github.png b/web/input/resources/github.png new file mode 100644 index 0000000..1e19c21 --- /dev/null +++ b/web/input/resources/github.png | |||
| Binary files differ | |||
diff --git a/web/input/resources/plugins.css b/web/input/resources/plugins.css new file mode 100644 index 0000000..552284f --- /dev/null +++ b/web/input/resources/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 | |||
| 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 | white-space: pre; | ||
| 36 | } | ||
| 37 | |||
| 38 | pre { | ||
| 39 | font-family: "Source Code Pro", monospace; | ||
| 40 | font-size: small; | ||
| 41 | } | ||
| 42 | |||
| 43 | div#breadcrumb { | ||
| 44 | padding: 1em 1em 0.2em; | ||
| 45 | } | ||
| 46 | |||
| 47 | div#content { | ||
| 48 | padding: 0.2em 1em 1em; | ||
| 49 | } | ||
| 50 | |||
| 51 | div#footer { | ||
| 52 | padding: 1em; | ||
| 53 | } | ||
| 54 | |||
| 55 | div#menu { | ||
| 56 | padding: 0.6em 0 0.6em 0; | ||
| 57 | background-color: #1b476b; | ||
| 58 | font-weight: bold; | ||
| 59 | } | ||
| 60 | |||
| 61 | div#menu span { | ||
| 62 | padding: 0.6em; | ||
| 63 | } | ||
| 64 | |||
| 65 | div#menu span#current { | ||
| 66 | color: #fff; | ||
| 67 | background-color: #5a95c7; | ||
| 68 | } | ||
| 69 | |||
| 70 | div#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 | |||
| 85 | div#menu a:hover { | ||
| 86 | color: #eeb76b; | ||
| 87 | } | ||
| 88 | |||
| 89 | table /* Nginx Fancy Index. */ { | ||
| 90 | font-family: "Source Code Pro", monospace; | ||
| 91 | font-size: small; | ||
| 92 | } | ||
| 93 | |||
| 94 | div#content a, | ||
| 95 | table a { | ||
| 96 | color: #3283c7; | ||
| 97 | text-decoration: none; | ||
| 98 | border-bottom: 1px dotted #3283c7; | ||
| 99 | } | ||
| 100 | |||
| 101 | div#content a:hover, | ||
| 102 | table a:hover { | ||
| 103 | color: #3283c7; /* Overwrite Fancy Index CSS. */ | ||
| 104 | border-bottom: 1px solid #3283c7; | ||
| 105 | } | ||
| 106 | |||
| 107 | div#breadcrumb { | ||
| 108 | color: #696969; | ||
| 109 | font-size: small; | ||
| 110 | } | ||
| 111 | |||
| 112 | div#breadcrumb span#release { | ||
| 113 | float: right; | ||
| 114 | font-weight: bold; | ||
| 115 | } | ||
| 116 | |||
| 117 | div#footer { | ||
| 118 | color: #696969; | ||
| 119 | text-align: center; | ||
| 120 | font-size: small; | ||
| 121 | line-height: 150%; | ||
| 122 | } | ||
| 123 | |||
| 124 | div#breadcrumb a, | ||
| 125 | div#footer a { | ||
| 126 | color: #696969; | ||
| 127 | text-decoration: none; | ||
| 128 | border-bottom: 1px dotted #696969; | ||
| 129 | } | ||
| 130 | |||
| 131 | div#breadcrumb a:hover, | ||
| 132 | div#footer a:hover { | ||
| 133 | border-bottom: 1px solid #696969; | ||
| 134 | } | ||
