-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.css
More file actions
90 lines (78 loc) · 1.4 KB
/
auth.css
File metadata and controls
90 lines (78 loc) · 1.4 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
:root {
color-scheme: light;
--bg: #f7f8fb;
--panel: #ffffff;
--text: #172033;
--muted: #647084;
--border: #d9dee8;
--accent: #0f766e;
}
* {
box-sizing: border-box;
}
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
background: var(--bg);
color: var(--text);
font: 15px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.shell {
width: min(480px, calc(100vw - 32px));
}
.panel {
padding: 24px;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--panel);
}
.eyebrow {
margin: 0 0 4px;
color: var(--accent);
font-weight: 750;
}
h1 {
margin: 0;
font-size: 26px;
}
.copy {
margin: 8px 0 18px;
color: var(--muted);
}
.code-box {
padding: 16px;
border: 1px solid var(--border);
border-radius: 8px;
background: #f9fafb;
font: 700 32px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
letter-spacing: 3px;
text-align: center;
}
.actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 16px;
}
button {
height: 42px;
border: 1px solid var(--border);
border-radius: 6px;
background: #ffffff;
color: var(--text);
font: inherit;
font-weight: 750;
cursor: pointer;
}
button:first-child {
border-color: var(--accent);
background: var(--accent);
color: #ffffff;
}
.message {
min-height: 22px;
margin: 14px 0 0;
color: var(--muted);
}