diff options
Diffstat (limited to 'res/css/setup.css')
| -rw-r--r-- | res/css/setup.css | 56 |
1 files changed, 44 insertions, 12 deletions
diff --git a/res/css/setup.css b/res/css/setup.css index 9755ad3..f0a63e5 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; + background-color: var(--cl-gray-1); + color: var(--foreground); + border: 1px solid var(--border); + border-radius: 0; + gap: 1rem; +} - /* debug */ - background-color: #1a1a1f; - border-radius: 0.375rem; +.welcome-image { + max-width: 200px; + width: 100%; + border-radius: 0; + 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,16 +46,28 @@ 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; + color: var(--cl-gray-0); + border: none; + border-radius: 0; + cursor: pointer; + font-size: 0.95rem; + font-weight: bold; &:hover { - filter: brightness(1.15); + background-color: var(--cl-orange-7); + color: var(--cl-gray-0); } } } @@ -46,4 +77,5 @@ body { flex-direction: column; gap: 0.5rem; color: var(--error); -} + font-size: 0.9rem; +}
\ No newline at end of file |
