summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authormms <michal@sapka.me>2024-02-21 21:13:07 +0100
committermms <michal@sapka.me>2024-02-21 21:13:07 +0100
commit828acb182ab2ed7a7320ebb138bf55579da1c322 (patch)
treef069d091e985e854de832ab90e847990bcb54366 /static
parent90f8e4a8362c109a8cf046d71d6475deb1b5803e (diff)
feat: new emacs homepage
Diffstat (limited to 'static')
-rw-r--r--static/style.css22
1 files changed, 18 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css
index d6acbc2..69ed3e5 100644
--- a/static/style.css
+++ b/static/style.css
@@ -74,6 +74,10 @@
--emacs-highlight-color: #7F5AB6;
--emacs-logo-bg-color: var(--emacs-highlight-color);
--emacs-h1-color: var(--emacs-highlight-color);
+ --emacs-h2-color: var(--emacs-highlight-color);
+ --emacs-h3-color: var(--emacs-highlight-color);
+ --emacs-h4-color: var(--emacs-highlight-color);
+ --emacs-h5-color: var(--emacs-highlight-color);
}
/* blog_variables_end */
@@ -251,7 +255,7 @@ body.blog h1 {
}
/* blog_header_end */
-/* emacs_header_end */
+/* emacs_header_start */
body.emacs > header > .logo {
background-color: var(--emacs-logo-bg-color);
}
@@ -388,6 +392,15 @@ h2, h3, h4, h5 {
h2 {
border-bottom-width: 1px;
}
+
+/* emacs_article_start */
+body.emacs h2 { color: var(--emacs-h2-color); border-color: var(--emacs-h2-color) }
+body.emacs h3 { color: var(--emacs-h2-color); border-color: var(--emacs-h2-color) }
+body.emacs h4 { color: var(--emacs-h2-color); border-color: var(--emacs-h2-color) }
+body.emacs h5 { color: var(--emacs-h2-color); border-color: var(--emacs-h2-color) }
+body.emacs h6 { color: var(--emacs-h2-color); border-color: var(--emacs-h2-color) }
+
+/* emacs_article_end */
blockquote {
border: 0;
@@ -425,9 +438,10 @@ img.float-right {
img.center {
max-width: 100%;
height: auto;
- border-style: solid;
- border-color: var(--border-color);
- border-width: 1px;
+}
+img.small {
+ max-width: 50%;
+ height: auto;
}
figure.graph {
background-color: var(--highlight-bg);