-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (87 loc) · 1.38 KB
/
styles.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
97
98
99
100
101
102
103
@font-face {
font-family: P22Johnston;
src: url(fonts/P22UndergroundBook.otf), format("opentype");
font-display: swap;
}
html {
box-sizing: border-box;
font-family: P22Johnston, serif;
background-color: #121213;
color: #ffffff;
}
h1,
h2 {
text-align: center;
margin: 0.5vh 2.5vw;
}
h1 {
font-size: 3rem;
margin-top: 2vh;
}
#date {
font-size: 2rem;
margin-bottom: 2vh;
}
button {
margin: 1vh 10vw;
padding: 1.25rem;
width: 80vw;
height: 5vh;
border: 3px solid #ffffff;
background-color: #3a3a3c;
font-size: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #ffffff;
}
button:hover {
background-color: #29292a;
box-shadow: 0 0 2px #ffffff;
}
.buttons {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-top: 1rem;
margin-bottom: 2rem;
}
a {
text-decoration: none;
color: #ffffff;
}
#code {
font-family: monospace;
border: none;
}
#popup {
height: 100vh;
width: 80vw;
margin: 0 10vw;
}
#popup button {
margin: 3vh 0;
}
p {
font-size: 1.25rem;
}
.hidden {
display: none;
}
/* desktop only */
@media only screen and (min-width: 1025px) {
button {
width: 40vw;
height: 1vh;
font-size: 1.25rem;
margin: 0.5vh 0vw;
}
#popup {
width: 40vw;
margin: 0 auto;
height: 80vh;
}
}