aboutsummaryrefslogtreecommitdiffstats
path: root/static/style.css
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@blos.sm>2023-06-21 23:46:20 +0100
committerLibravatar cel 🌸 <cel@blos.sm>2023-06-21 23:46:20 +0100
commit5f2a48905634e7874946425057dc904dcb6c7d16 (patch)
tree89335193f5303c2d236440d6d88c3a1f00c0c4c9 /static/style.css
parenta508c3a7b49373d89a0522784a2a7e96b8d873e0 (diff)
downloadblossom-5f2a48905634e7874946425057dc904dcb6c7d16.tar.gz
blossom-5f2a48905634e7874946425057dc904dcb6c7d16.tar.bz2
blossom-5f2a48905634e7874946425057dc904dcb6c7d16.zip
implement blog
Diffstat (limited to '')
-rw-r--r--static/style.css63
1 files changed, 63 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 5aae4df..3542e62 100644
--- a/static/style.css
+++ b/static/style.css
@@ -124,6 +124,12 @@ main {
align-items: flex-start;
}
+.reverse {
+ flex-direction: row-reverse;
+ flex-wrap: wrap-reverse;
+ align-items: flex-end;
+}
+
.main-content {
flex: 12 1 0;
min-width: 50%;
@@ -316,6 +322,63 @@ iframe {
display: none;
}
+/* blog */
+
+.blogpost {
+ font-family: Sligoil;
+}
+
+.tags {
+ display: flexbox;
+ flex-wrap: wrap;
+ gap: 0.5em;
+}
+
+.tags a {
+ margin: 0;
+}
+
+.blogpost .tag {
+ font-family: 'Go Mono';
+ margin: 0;
+}
+
+.blogpost .title {
+ font-family: 'kaeru kaeru';
+ font-size: 4em;
+ margin: 0.5em 0 0;
+}
+
+.blogpost .created-at {
+ font-family: 'Steps Mono';
+ font-size: 1em;
+ margin: 0 0 1em;
+}
+
+.blogpost .created-at a,
+.blogpost-content a {
+ padding: 0;
+ margin: 0 0.5em;
+ background-color: transparent;
+ color: #b52f6a;
+ text-decoration: underline;
+}
+
+.blogpost-content ul {
+ list-style-type: initial;
+}
+
+/* filter-tags */
+#filter-tags {
+ font-family: 'Go Mono';
+ z-index: -1;
+ background-color: #afd7ff;
+}
+
+#filter-tags h2 {
+ font-family: 'Go Mono';
+}
+
/* branches */
.branch {