-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (88 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (88 loc) · 1.56 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
:root {
color: #91ff73;
background: #030504;
font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
font-synthesis: none;
}
* {
box-sizing: border-box;
}
html,
body,
#root {
min-width: 320px;
min-height: 100%;
margin: 0;
}
body {
min-height: 100vh;
background:
radial-gradient(circle at 50% 45%, rgb(24 54 28 / 24%), transparent 38%),
#030504;
}
.preview-stage {
width: min(1180px, 100%);
min-height: 100vh;
margin: 0 auto;
padding: clamp(18px, 4vw, 48px);
display: grid;
align-content: center;
gap: 16px;
}
.preview-header {
display: flex;
align-items: end;
justify-content: space-between;
gap: 24px;
color: #83ea6a;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.preview-header div {
display: grid;
gap: 5px;
}
.preview-header strong {
font-size: clamp(0.8rem, 1.6vw, 1rem);
}
.preview-header span,
.preview-header output,
.preview-note {
color: #4f8f49;
font-size: clamp(0.62rem, 1.2vw, 0.76rem);
}
.preview-header output {
max-width: 48ch;
text-align: right;
}
.hud-frame {
overflow: hidden;
width: 100%;
aspect-ratio: 2 / 1;
background: #000;
border: 1px solid #244d25;
box-shadow: 0 0 50px rgb(87 255 89 / 10%);
}
.hud-frame canvas {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
.preview-note {
margin: 0;
text-align: center;
}
@media (max-width: 680px) {
.preview-stage {
padding: 14px;
}
.preview-header {
align-items: start;
flex-direction: column;
gap: 10px;
}
.preview-header output {
text-align: left;
}
}