-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
53 lines (44 loc) · 816 Bytes
/
styles.scss
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
/**
* Make sure these look good in light mode and dark mode!
* If you omit any values, defaults will be used.
*/
$white: #ccc;
$black: black;
$accent: rgb(185, 123, 67);
/**
* You can add any other styles below
*/
.lead h1,
.roadmap h1,
.roadmap h2,
.about-chests h1 {
color: $accent;
}
.roadmap em {
color: $accent;
font-weight: var(--fw-regular);
}
.about-chests .container > * {
flex-direction: column-reverse;
}
.core-team .grid {
font-size: 0.75em;
gap: var(--spacing-xxl);
grid-template-columns: 1fr 1fr 1fr;
@media (min-width: 800px) {
padding: var(--spacing-xxl);
}
@media (max-width: 500px) {
grid-template-columns: 1fr;
&>* {
flex-direction: row;
}
.image {
flex: 0 0 133px;
height: 133px;
}
.text {
flex: 1;
}
}
}