aboutsummaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorRadu <radu@pml4t.net>2023-11-23 14:21:12 -0500
committerRadu <radu@pml4t.net>2023-11-23 14:48:56 -0500
commitef17d1d29212f5dc0218bfca1c30709e5a35f7b2 (patch)
treee2906ef5beb1eb1d705639016a3520c05b6ca1cb /styles.css
parentaf1e27cb8bc97c12fbea83bc55b7debc582aec33 (diff)
Reduce spacing around code and round corners
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index 55cc732..a63efc9 100644
--- a/styles.css
+++ b/styles.css
@@ -6,3 +6,17 @@
math {
font-family: "STIXTwoMath";
}
+
+code.hljs {
+ padding: 2px;
+ border-radius: 2px;
+}
+
+pre code.hljs {
+ padding: 0.5em;
+ border-radius: 0.5em;
+}
+
+pre.code-block {
+ margin: 0.5em 0;
+}