diff options
| author | Paul Buetow <paul@buetow.org> | 2013-02-03 10:44:49 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-02-03 10:44:49 +0100 |
| commit | 025e15b2ba7f54f87cf409fd7c3dd77746c72858 (patch) | |
| tree | 007c5af4f921aa85665f4db56f6f4309668a5dab /default/htdocs/styles | |
| parent | fc0acd318710aa0bb566329a36d886b1455c21ec (diff) | |
add hosts
Diffstat (limited to 'default/htdocs/styles')
| -rw-r--r-- | default/htdocs/styles/blank.css | 1 | ||||
| -rw-r--r-- | default/htdocs/styles/default.css | 110 |
2 files changed, 111 insertions, 0 deletions
diff --git a/default/htdocs/styles/blank.css b/default/htdocs/styles/blank.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/default/htdocs/styles/blank.css @@ -0,0 +1 @@ + diff --git a/default/htdocs/styles/default.css b/default/htdocs/styles/default.css new file mode 100644 index 0000000..2c9e778 --- /dev/null +++ b/default/htdocs/styles/default.css @@ -0,0 +1,110 @@ +html { + height: 100%; +} + +body { + font-family: Georgia, Serif; + background-color: #19495f; + height: 100%; + max-width: 900px; +} + +p { + padding: 1px 0; +} + +div.header { + background-color: #01768f; + border-color: #000000; + border-width: 2px; + border-style: solid; + color: #FFFFFF; + padding: 20px; + margin: 0px; + margin-bottom: 5px; + text-align: center; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +span.italic { + font-style: italic; +} + +span.bold { + font-weight: bold; +} + +div.main { + background-color: #FFFFFA; + border-width: 1px; + border-style: solid; + padding: 5px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +div.important { + background-color: #FF8181; + border-width: 1px; + border-style: solid; +} + +h1 { + padding-left: 10px; + font-size: 30px; +} + +h2, h3, p { + padding-left: 10px; + padding-right: 10px; +} + + +pre, .quote, .code { + border:1px #000000 solid; + font-family: "Courier New", courier; + background: #FFFFFF; + color: #000000; + padding-top: -10px; + padding-right: 10px; + padding: 10px; + margin-bottom: 30px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +.footer { + background-color: #EEEEEE; + color: #000000; + text-align: center; + font-style: italic; + font-size: 12px; + margin-top: 10px; + padding: 10px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +a { + color: #000000; +} + +a:hover { + color: #FF0000; + text-decoration: none; +} + +img { + padding-left: 10px; + padding-bottom: 10px; +} + +img.limg { + padding-right: 10px; +} + +div.incsep { + background-color: #FEFEFE; + padding-bottom: 50px; +} |
