aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2023-12-24 15:26:04 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-05-08 21:34:16 +0200
commitc9ce0850f8b81cacbfd93048a5c9b14809ed6aa2 (patch)
treef3fc41d602170573d9827c0f9299825f3c52d2ea
parent247f7b0531dcf3eb16dc10ebd4b306e9c0fd4537 (diff)
Improve CSS style
Make the header sections a bit smaller as well as code blocks. Also put a light border around code blocks.
-rw-r--r--style.css10
1 files changed, 9 insertions, 1 deletions
diff --git a/style.css b/style.css
index 91f9040..b87000c 100644
--- a/style.css
+++ b/style.css
@@ -1,18 +1,26 @@
body {
width: 40em;
margin: 2em;
- font-size: 18px;
+ font-size: 17px;
line-height: 1.4em;
background-color: white
}
h1 {
padding-bottom: 0.5em;
+ font-size: 26px;
+}
+
+h2 {
+ padding-bottom: 0.5em;
+ font-size: 22px;
}
pre {
+ border: 1px #ddd solid;
background-color: #f4f4f4;
padding: 1em;
+ font-size: 14px;
}
table {