diff options
| author | Paul Buetow <paul@buetow.org> | 2022-05-28 18:51:26 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2022-05-28 18:51:26 +0100 |
| commit | ce927cf1ccf5bc6ddce116d9ad03be43117ca464 (patch) | |
| tree | 961cf5438691833041ca8897aa833dd0f9516c36 /htmlextras/style1.css | |
| parent | 6d02279c3526d00ca63164f89e6bdbbee9828520 (diff) | |
move html related content to htmlextras
Diffstat (limited to 'htmlextras/style1.css')
| -rw-r--r-- | htmlextras/style1.css | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/htmlextras/style1.css b/htmlextras/style1.css new file mode 100644 index 0000000..956541d --- /dev/null +++ b/htmlextras/style1.css @@ -0,0 +1,75 @@ +body { + margin: auto; + padding-left: 10px; + padding-right: 10px; + max-width: 900px; + background-color: #37585E; + color: #ddddce; + font-family: Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace; + font-style: normal; + font-variant: normal; +} + +h1 { + color: #ffffff; +} + +h2 { + color: #ffffef; +} + +h3 { + color: #eeeede; +} + +a { + color: #99ccff; + text-decoration: none; +} + +a:hover { + color: #55bc90; + text-decoration: underline; +} + +li { + color: #99ccff; +} + +img { + max-width: 600px; + max-height: 400px; + display: block; + margin: auto; +} + +pre { + display: block; + background-color: #111; + color: #bbbfaf; + padding: 5px; + overflow-x: auto; +} + +a.textlink:before { + content: " ⇒ "; + padding-left: 11px; +} + +p.quote { + color: cyan; +} + +p.footer { + color: #ffa500; +} + +p.quote:before { + content: " « "; + padding-left: 2px; +} + +p.quote:after { + content: " » "; + padding-right: 2px; +} |
