diff options
| author | soaos <soaos@soaos.dev> | 2026-04-03 17:20:59 -0400 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-04-03 17:20:59 -0400 |
| commit | f28c56ddd35ab468527eda2b116f300732938205 (patch) | |
| tree | 35afd7cfd032650202fbca9eddac66c0939314f1 /static/index.css | |
Initial Commit (Fresh Start)
Diffstat (limited to 'static/index.css')
| -rw-r--r-- | static/index.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/static/index.css b/static/index.css new file mode 100644 index 0000000..9ae6d1e --- /dev/null +++ b/static/index.css @@ -0,0 +1,27 @@ +.section { + background-color: var(--bg1); +} + +html { + background: url("/assets/bg.jpg"); + background-attachment: fixed; + background-size: cover; + image-rendering: pixelated; +} + +#weird-fucking-header-container { + display: inline-grid; + grid-template-columns: 1fr; + grid-template-rows: 1fr; +} + +.whatever { + grid-area: 1 / 1 / 2 / 2; +} + +#badge-grid { + display: inline-grid; + grid-template-columns: 1fr 1fr 1fr; + gap: 4px; +} + |