summaryrefslogtreecommitdiff
path: root/sass/style.scss
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-11-30 19:45:41 +0000
committerLibravatar Silas Bartha <[email protected]>2024-11-30 19:45:41 +0000
commitadfce7bf15d1f1b03353b161c2cbdabebfb56aa5 (patch)
treec37f652ad61881d45c421b9281f360b789212593 /sass/style.scss
parent4c132c581809bb1429b4a714340f99ca3b586ae6 (diff)
Sat Nov 30 07:45:41 PM UTC 2024
Diffstat (limited to 'sass/style.scss')
-rw-r--r--sass/style.scss38
1 files changed, 37 insertions, 1 deletions
diff --git a/sass/style.scss b/sass/style.scss
index 3131fed..7611a8d 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -23,9 +23,22 @@
/// }}}
+h1 {
+ margin: 0;
+}
+
+html {
+ background-color: everforest.$bg0;
+ height: 100%;
+}
+
body {
color: everforest.$fg;
background-color: everforest.$bg1;
+ margin: 0 auto;
+ max-width: 800px;
+ padding: 10px;
+ min-height: 100%;
}
a {
@@ -38,7 +51,30 @@ img {
}
pre {
- padding: 5px;
+ padding: 1rem;
+ overflow: auto;
+}
+/* The line numbers already provide some kind of left/right padding */
+pre[data-linenos] {
+ padding: 1rem 0;
+}
+pre table td {
+ padding: 0;
+}
+/* The line number cells */
+pre table td:nth-of-type(1) {
+ text-align: center;
+ user-select: none;
+}
+pre mark {
+ /* If you want your highlights to take the full width */
+ display: block;
+ /* The default background colour of a mark is bright yellow */
+ background-color: rgba(254, 252, 232, 0.9);
+}
+pre table {
+ width: 100%;
+ border-collapse: collapse;
}
.wip-indicator {