-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
72 lines (60 loc) · 1.1 KB
/
custom.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
/* Global CSS variables */
:root {
--spacing-company: 3rem;
--font-weight: 400;
--border-radius: 0;
}
/* Typography */
h2,
h3,
hgroup > :last-child {
font-weight: 200;
}
small {
color: var(--muted-color);
}
/* Header */
.hero {
background-color: #394046;
background-image: url("assets/hero.jpg");
background-position: center;
background-size: cover;
background-blend-mode: overlay;
}
header {
padding: var(--spacing-company) 0;
}
header hgroup > :last-child {
color: var(--h3-color);
}
header hgroup {
margin-bottom: var(--spacing-company);
}
/* Nav */
summary[role="link"].contrast:is([aria-current],:hover,:active,:focus) {
background-color: transparent;
color: var(--contrast-hover);
}
/* Main */
@media (min-width: 992px) {
main .grid {
grid-column-gap: var(--spacing-company);
grid-template-columns: auto 25%;
}
}
form.grid {
grid-row-gap: 0;
}
#platforms hgroup {
text-align: center;
}
#fundamentals .grid {
grid-gap: 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
margin: 0;
}
#help pre {
box-shadow: 10px 10px 5px;
padding: 10px;
}