-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (67 loc) · 1.14 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (67 loc) · 1.14 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
:root {
--bg-color: #111113;
--accent: #953b8f;
--text: #f37c1f;
--white-text: #ecedef;
color: var(--text);
}
@font-face {
font-family: "Berkeley Mono";
src: url("fonts/BerkeleyMonoVariable-Regular.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
body {
font-family: "Berkeley Mono", monospace;
margin: 4rem auto;
max-width: 40rem;
width: 90vw;
background-color: var(--bg-color);
}
#banner-img {
display: block;
margin: 20px auto;
width: 85%;
}
h1 {
margin-bottom: 1rem;
font-size: 2rem;
margin-left: -2rem;
color: var(--white-text);
}
.questions {
max-width: 50rem;
width: 80vw;
margin: 0 auto;
font-size: 1.2rem;
}
label {
display: block;
margin: -0.5rem 0;
text-indent: -2rem;
}
#calculate-score {
background-color: var(--text);
font-family: inherit;
color: var(--white-text);
border: 1px solid var(--white-text);
font-size: 1.2rem;
border-radius: 4px;
}
#calculate-score:hover {
background-color: #b25b18;
}
#calculate-score:active {
background-color: #444444;
}
#score-display {
margin: 1rem 0;
font-size: 1.5rem;
}
#score {
color: var(--accent);
}
.hidden {
display: none;
}