summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2022-01-15 10:11:26 -0600
committerMatt Singleton <matt@xcolour.net>2022-01-16 13:04:41 -0600
commit72e2b1675b300d9ffde1b93a1f2f567df49343cf (patch)
tree2033f942b683de4a74e31f82564cb5ab43d20523 /style.css
parent17921744313bcffeb65f9cd9fb387364691a39db (diff)
basic visual style
Diffstat (limited to 'style.css')
-rw-r--r--style.css46
1 files changed, 19 insertions, 27 deletions
diff --git a/style.css b/style.css
index 1189a93..b75a239 100644
--- a/style.css
+++ b/style.css
@@ -1,37 +1,29 @@
-#root {
-font-size: 20px;
-font-family: Garamond, Georgia, sans-serif;
+html {
+ font-size: 18px;
+ font-family: Garamond, Georgia, sans-serif;
}
-p.h1 {
-font-size: 40px;
-}
-p.h2 {
-font-size: 30px;
-}
-p.h3{font-size: 23px; }
-p {
- line-height: 1.5;
- margin: 0 0 20px;
-}
-a:active { color: tomato; }
-a:focus { border: 1px dotted tomato; }
+
pre {
font-family: Courier, monospace;
- font-size: 10%;
}
+
blockquote {
- font-style: italic;
+ border-left: 5px solid #ddd;
+ padding: 0.6em 0.6em 0.2em;
+ font-style: italic;
}
+
blockquote:before {
- content: "\201C";
- display: inline-block;
- padding-right: 8px;
+ content: "\201C";
+ display: inline-block;
+ padding-right: 0.4rem;
+ font-size: 4em;
+ line-height: 0;
+ vertical-align: -0.4em;
+ color: lightgrey;
+ margin-right: 0.1em;
}
-/*
- * Begin custom styles.
- */
-
-li.external a {
- color: red;
+li.link::marker {
+ content: '⇒ ';
}