diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2025-09-22 11:06:15 +0200 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2025-09-22 11:06:15 +0200 |
| commit | ef7c8c820916556fc5bff26c6ad7d12ef1606423 (patch) | |
| tree | e6dbc68e081d43c6675591e1748f489833c8c05d /static/style.css | |
| parent | c150f419a06e7bb006a4a71fa4e98faeb961037d (diff) | |
reworked the website
changed buttons, css, added first blog post
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 44 |
1 files changed, 40 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index f9a1c56..89a3479 100644 --- a/static/style.css +++ b/static/style.css @@ -1,9 +1,11 @@ :root { --bg: #e1e2e7; + --sbg: #e9e663; --fg: #32344a; --title: #7aa2f7; --subtitle: #449dab; - --link: #ad80f6; + --subsubtitle: #000; + --link: #9b4ae0; --regularfont: system-ui; --titlecodefont: 'Courier New', Courier, monospace; } @@ -12,9 +14,11 @@ :root { --fg: #a9b1d6; --bg: #1a1b26; + --sbg: #39405e; --title: #ad8ee6; --link: #7aa2f7; --subtitle: #0db9d7; + --subsubtitle: #ccf; } } @@ -30,19 +34,44 @@ body { pre { padding: 1em 1em; line-break: auto; + text-align: left; + border: solid 1px var(--fg); +} + +code { + font-family: var(--titlecodefont); + background: var(--sbg); +} + +blockquote { + background: var(--sbg); + padding: 0.3em 0.5em; + margin: auto; +} + +.buttons { + text-align: center; } a { color: var(--link); } +h1 { + text-align: center; +} + +h3 { + color: var(--subsubtitle); +} + .finaline { display: flex; justify-content: space-between; align-items: center; } -.notfound > h1 { +.notfound>h1 { font-size: 15em; } @@ -50,7 +79,14 @@ a { text-align: center; } -h1, h2, h3, pre { +.highlight { + font-family: var(--titlecodefont); +} + +h1, +h2, +h3, +pre { font-family: var(--titlecodefont); } @@ -129,4 +165,4 @@ img { .columns { columns: 1; } -} +}
\ No newline at end of file |
