summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 647aee5..e6d610a 100644
--- a/static/style.css
+++ b/static/style.css
@@ -191,3 +191,59 @@ a {
width: 70%;
}
}
+
+.blog-date {
+ text-decoration: none;
+}
+
+.blog-entry {
+ display: flex !important;
+ flex-direction: column !important;
+ align-items: center !important;
+ justify-content: center !important;
+ gap: 0.8rem;
+ padding: 1rem !important;
+ text-align: center !important;
+ overflow-y: hidden;
+ overflow-x: hidden;
+ white-space: normal !important;
+ word-wrap: break-word;
+ word-break: break-word;
+}
+
+.blog-image-wrap {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+}
+
+.blog-thumbnail {
+ max-width: 90%;
+ height: auto;
+ max-height: 200px;
+ border-radius: 4px;
+ border: 4px solid #313244;
+ object-fit: cover;
+}
+
+.blog-title a {
+ color: #cdd6f4;
+ text-decoration: none;
+ transition: color 0.4s;
+}
+
+.blog-title {
+ margin: 0;
+ padding: 0;
+}
+
+.blog-title a:hover {
+ color: #f9e2af;
+ text-decoration: underline;
+}
+
+.blog-ls {
+ text-align: left;
+ margin: 0;
+}