-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
100 lines (89 loc) · 1.94 KB
/
App.css
File metadata and controls
100 lines (89 loc) · 1.94 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background-color: var(--color-bg-void);
color: var(--color-text-primary);
}
body {
font-family: var(--font-mono);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
width: 100vw;
height: 100vh;
background: var(--color-bg-void);
display: flex;
justify-content: center;
overflow: hidden;
}
/* Brutalist shell: flat sheet, hard edges, no shadow, no radius.
Fills the full window — no width cap. */
.app-shell {
width: 100%;
height: 100%;
background: var(--color-bg-app);
display: flex;
position: relative;
overflow: hidden;
}
.app-shell > * {
flex: 1;
min-width: 0;
min-height: 0;
}
.route-error {
flex: 1;
min-width: 0;
min-height: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: var(--space-4);
padding: var(--space-10);
background: var(--color-bg-app);
color: var(--color-text-primary);
border: 2px solid var(--color-accent-red);
font-family: var(--font-mono);
}
.route-error-kicker {
font-size: var(--text-xs);
font-weight: var(--weight-bold);
letter-spacing: var(--tracking-widest);
text-transform: uppercase;
color: var(--color-accent-red);
}
.route-error h1 {
margin: 0;
font-size: var(--text-3xl);
font-weight: var(--weight-black);
letter-spacing: var(--tracking-tight);
}
.route-error p {
max-width: 760px;
margin: 0;
color: var(--color-text-secondary);
font-size: var(--text-sm);
line-height: 1.6;
}
.route-error button {
padding: 8px 12px;
background: transparent;
border: 1px solid var(--color-ink);
color: var(--color-text-primary);
font: inherit;
font-size: var(--text-xs);
font-weight: var(--weight-bold);
letter-spacing: var(--tracking-widest);
cursor: pointer;
}
.route-error button:hover {
background: var(--color-text-primary);
color: var(--color-text-inverted);
}