diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-04 09:40:42 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-04 09:40:42 -0500 |
| commit | 85a2a330f729d70dfce1b81dc69ec15436a3d44c (patch) | |
| tree | c96214d08cf397efbb98c5e67292604395933093 /style.css | |
Initial clean commit
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..43a6973 --- /dev/null +++ b/style.css @@ -0,0 +1,32 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap'); + +*, *::before, *::after { + box-sizing: border-box; +} + +html, body { + background-color: #121212; + margin: 0; + padding: 0; + min-height: 100vh; + overflow: hidden; +} + +body { + display: flex; + justify-content: center; + align-items: flex-start; +} + +h1 { + font-family: 'Roboto Mono'; + color: #e6e6e6; + line-height: 1; + margin: 0; + margin-bottom: 1.5rem; +} + +p { + font-family: 'Roboto Mono'; + color: #e6e6e6; +} |
