diff options
| author | Arslaan Pathan <[email protected]> | 2026-07-18 10:05:29 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-07-18 10:05:29 +1200 |
| commit | c38a7d82fd7d5d187bc12c74ba684110b0b10e78 (patch) | |
| tree | 8c76cbab418de31ce213b0b8b8705b244700e94e /static | |
| parent | ee510ff529df49bf9d9c5e4d86f99032bb81162b (diff) | |
| download | arslaancodes-c38a7d82fd7d5d187bc12c74ba684110b0b10e78.tar.xz arslaancodes-c38a7d82fd7d5d187bc12c74ba684110b0b10e78.zip | |
Finish list of blog pages
Diffstat (limited to 'static')
| -rw-r--r-- | static/style.css | 56 |
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; +} |
