diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-03-20 23:16:01 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-03-20 23:16:01 -0700 |
| commit | 3508776583c21785dffc2f0bc9e7dd81c3f08480 (patch) | |
| tree | 681272e3ec7dfaa8c2f5b1b89247aa2e7bd6acc2 /res/css | |
| parent | 276e12db29ab31aa002f55b1a3cc69f170c1a2c2 (diff) | |
init custom changes
Diffstat (limited to 'res/css')
| -rw-r--r-- | res/css/setup.css | 48 |
1 files changed, 39 insertions, 9 deletions
diff --git a/res/css/setup.css b/res/css/setup.css index 9755ad3..b42f8a8 100644 --- a/res/css/setup.css +++ b/res/css/setup.css @@ -3,23 +3,42 @@ body { height: 100vh; align-items: center; justify-content: center; + background-color: var(--background-video); + margin: 0; } .setup { margin: auto; - padding: 2rem; - width: 320px; + padding: 2.5rem 2rem; + width: 360px; display: flex; flex-direction: column; align-items: center; - - /* debug */ background-color: #1a1a1f; + color: var(--foreground); + border: 1px solid var(--border); + border-radius: 0.5rem; + gap: 1rem; +} + +.welcome-image { + max-width: 200px; + width: 100%; border-radius: 0.375rem; + margin-bottom: 0.5rem; +} - & h1 { - font-size: 1.75rem; - } +.setup-title { + font-size: 1.75rem; + margin: 0; + text-align: center; +} + +.setup p { + margin: 0; + text-align: center; + opacity: 0.7; + font-size: 0.95rem; } .setup-form { @@ -27,13 +46,23 @@ body { flex-direction: column; gap: 1rem; width: 100%; + margin-top: 0.5rem; + + & input { + width: 100%; + box-sizing: border-box; + } & button { margin: 0; - padding: .75rem .5rem; + padding: 0.75rem 0.5rem; justify-content: center; background-color: var(--accent); color: #fff; + border: none; + border-radius: 0.375rem; + cursor: pointer; + font-size: 0.95rem; &:hover { filter: brightness(1.15); @@ -46,4 +75,5 @@ body { flex-direction: column; gap: 0.5rem; color: var(--error); -} + font-size: 0.9rem; +}
\ No newline at end of file |
