-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 868 Bytes
/
style.css
File metadata and controls
62 lines (53 loc) · 868 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
51
52
53
54
55
56
57
58
59
60
61
62
body {
--bg: #ffffff;
--text: #000000;
background: var(--bg);
color: var(--text);
}
body.dark {
--bg: #111111;
--text: #eeeeee;
}
.theme-btn {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 1.4rem;
cursor: pointer;
}
.controls {
display: grid;
gap: 12px;
margin-bottom: 20px;
}
#banner {
display: flex;
height: 120px;
border: 1px solid #ccc;
background-size: cover;
}
.color-block {
flex: 1;
}
.debug-grid {
display: grid;
gap: 12px;
grid-template-columns: 1fr 1fr;
}
.export-controls {
display: flex;
gap: 12px;
align-items: center;
margin: 20px 0;
}
.export-controls label {
display: flex;
flex-direction: column;
font-size: 0.9rem;
}
#exportBtn {
padding: 8px 16px;
cursor: pointer;
}