-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (45 loc) · 995 Bytes
/
styles.css
File metadata and controls
50 lines (45 loc) · 995 Bytes
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
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* ── Error states (page.tsx) ───────────────────────── */
.error {
min-height: 100vh;
background-color: #373841;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
/* ── App ──────────────────────────────────────────── */
.no-session {
color: #ff6b6b;
font-family: monospace;
}
.app {
min-height: 100vh;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: calc(10px + 2vmin);
padding: 2rem;
gap: 1rem;
}
.app--on {
background-color: #00844b;
}
.app--off {
background-color: #373841;
}
.context,
.flag-key {
font-size: 0.7em;
opacity: 0.75;
}