aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicholasjohnson.ch>2023-06-01 00:00:00 +0000
committerNicholas Johnson <nick@nicholasjohnson.ch>2023-06-01 00:00:00 +0000
commit63d9398da10daed4d9dcc22a59cdd941307daeb4b3ac1c8ebcb9e9f3729921c3 (patch)
tree58a2fb29daa3cea4ddadaa19b0fe68bf02ab93a7495f5f4797c1050fc314c26b
parentf59cd17fde1a82a89b4c4543a670a8b212efde8d0018d13a638ccb75426cd9eb (diff)
Make CSS styling more symmetrical
-rw-r--r--assets/css/style.css35
1 files changed, 18 insertions, 17 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 2bb7a51..50536a1 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -36,11 +36,11 @@ h3, h4, h5, h6 {
}
h1, h2, h3, h4, h5, h6 {
- margin: 0;
+ margin-top: 1.5em;
+ margin-bottom: 1.0em;
}
p {
- margin-top: 0;
overflow-wrap: break-word;
}
@@ -48,14 +48,16 @@ pre {
color: #ffffba;
line-height: normal;
overflow: auto;
- margin-bottom: 1.4em;
}
blockquote {
background-color: #272822;
font-style: italic;
- margin: 1.4em;
- padding: 0.5em;
+ padding: 1.0em;
+}
+
+blockquote :first-child {
+ margin-top: 0;
}
blockquote :last-child {
@@ -64,17 +66,19 @@ blockquote :last-child {
ol {
list-style: decimal inside none;
- padding: 0;
}
ul {
list-style: disc inside none;
- margin-top: 0;
- padding: 0;
}
-p, ul, ol, blockquote {
- margin-bottom: 1.4em;
+ol, ul {
+ padding-left: 0.5em;
+}
+
+blockquote, ol, p, pre, ul, .highlight {
+ margin-bottom: 1.0em;
+ margin-top: 1.0em;
}
.body {
@@ -100,13 +104,9 @@ p, ul, ol, blockquote {
margin-top: 2em;
}
-.highlight {
- margin-bottom: 1.4em;
- overflow: auto;
-}
-
.highlight pre {
- margin: 0;
+ margin-bottom: 0em;
+ margin-top: 0em;
}
.link {
@@ -121,12 +121,13 @@ p, ul, ol, blockquote {
.list {
list-style: none;
- margin-top: 0;
+ padding-left: 0;
}
@media (pointer: coarse) {
.list__item {
margin-bottom: 1em;
+ margin-top: 1em;
}
}