-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathglobal.css
96 lines (78 loc) · 1.12 KB
/
global.css
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
body {
margin: 0;
background: rgb(0, 0, 0);
color: white;
}
main header h1 {
font-size: min(15vw, 172px);
margin-bottom: 0.2rem;
margin-top: 0rem;
}
h2 {
font-size: min(5vw, 48px);
word-wrap: break-word;
}
h1,
h2,
h3 {
font-family: 'Major Mono Display', monospace;
}
p,
span,
button,
body,
a {
font-family: 'Space Mono', Inconsolata, monospace;
}
main,
nav,
footer {
max-width: 85vw;
margin: 0 auto;
}
footer,
nav {
padding: 3rem 0;
}
#more > div:nth-child(2) {
height: max-content;
}
#saleCount {
font-size: 0.8rem;
color: gray;
}
canvas {
z-index: -1;
position: fixed;
top: 0;
left: 0;
}
main a {
color: #6464fa;
}
article {
display: grid;
grid-template-columns: 1fr 1fr;
}
#grid {
padding-top: 6rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
gap: 6rem;
}
@media (max-width: 1200px) {
article {
grid-template-columns: 1fr;
}
#grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}
#not_found_text {
font-style: italic;
color: #777777;
}
footer {
display: flex;
justify-content: space-between;
}