-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
120 lines (103 loc) · 1.68 KB
/
Copy pathApp.css
File metadata and controls
120 lines (103 loc) · 1.68 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* Layout */
.page {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 24px;
}
.panel {
width: 100%;
max-width: 640px;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 14px;
box-shadow: var(--shadow);
padding: 24px;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
margin: 10px 0 6px;
font-size: 22px;
line-height: 1.3;
}
.subtitle {
margin: 0 0 20px;
color: var(--muted);
font-size: 14px;
}
.form {
display: grid;
gap: 10px;
min-width: 70%;
}
.form label {
font-weight: 600;
font-size: 14px;
}
.controls {
display: grid;
grid-template-columns: 1fr auto;
gap: 10px;
}
.input {
appearance: none;
background: var(--input);
color: var(--fg);
border: 1px solid var(--border);
border-radius: 10px;
padding: 10px 12px;
font-size: 16px;
}
.input::placeholder {
color: var(--muted);
}
.button {
appearance: none;
border: 1px solid transparent;
background: var(--accent);
color: var(--accent-fg);
border-radius: 10px;
padding: 10px 14px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.button:hover {
filter: brightness(1.05);
}
.button:active {
filter: brightness(0.95);
}
.greeting {
margin-top: 16px;
padding-top: 12px;
border-top: 1px dashed var(--border);
min-height: 24px;
color: var(--fg);
}
/* Brand header */
.brand {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.brand-framework {
width: 40px;
height: 40px;
}
.brand-vite {
width: 40px;
height: 40px;
}
.brand-icp {
width: 70px;
height: 70px;
}
.brand .plus {
font-weight: 700;
color: var(--muted);
}