summaryrefslogtreecommitdiff
path: root/style1.css
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-01-21 23:19:03 +0000
committerPaul Buetow <paul@buetow.org>2022-01-22 08:54:33 +0000
commit0cf304fb5cc630ef6168a2e48c49a59da71dd880 (patch)
tree81670f82ddab0b71611df6ec0db54c8829ec219a /style1.css
parent8fdc47c4c0f185d7cc74958340502a90c4bd612f (diff)
improve style
Diffstat (limited to 'style1.css')
-rw-r--r--style1.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/style1.css b/style1.css
new file mode 100644
index 0000000..956541d
--- /dev/null
+++ b/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;
+}