blob: b42f8a8d42878c52def89a0f7b82ccceb3f123e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
background-color: var(--background-video);
margin: 0;
}
.setup {
margin: auto;
padding: 2.5rem 2rem;
width: 360px;
display: flex;
flex-direction: column;
align-items: center;
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;
}
.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 {
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
margin-top: 0.5rem;
& input {
width: 100%;
box-sizing: border-box;
}
& button {
margin: 0;
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);
}
}
}
.form-errors {
display: flex;
flex-direction: column;
gap: 0.5rem;
color: var(--error);
font-size: 0.9rem;
}
|