summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/_index.md4
-rw-r--r--sass/style.scss38
2 files changed, 39 insertions, 3 deletions
diff --git a/content/_index.md b/content/_index.md
index 9977fe4..add14ca 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -10,7 +10,7 @@ title = "hello"
find me in other places
-- github: [exvacuum](https://github.com/exvacuum)
+- mail: <a href="mailto:[email protected]" rel="me">[email protected]</a>
+- github: <a href="https://github.com/exvacuum" rel="me">@exvacuum</a>
- youtube: [@silasbartha](https://youtube.com/@silasbartha)
- mastodon: <a href="https://furry.engineer/@exvacuum" rel="me">@[email protected]</a>
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 {