-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbase.css
64 lines (43 loc) · 1.45 KB
/
base.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
@charset "UTF-8";
/* VARIABLES -------------------------------------------------------------- */
:root {
--heading-font: 'Open Sans', sans-serif;
--main-font: 'Open Sans', sans-serif;
--minor-font: 'Open Sans', sans-serif;
--heading-color: rgba(0,0,50,.9);
--main-color: rgba(70,70,90,.9);
--minor-color: rgb(190,190,200);
--emphasis-color: rgb(27,211,165);
}
/* DEFAULTS --------------------------------------------------------------- */
html {
color: var(--main-color);
font-family: var(--main-font);
font-size: 16px;
font-weight: 400;
}
/* TYPOGRAPHY ------------------------------------------------------------- */
.primary-heading {
color: var(--heading-color);
font-family: var(--heading-font);
font-size: 2rem;
font-weight: 400;
}
/* LINKS & BUTTONS -------------------------------------------------------- */
/* LAYOUT ----------------------------------------------------------------- */
/* COMPONENTS ------------------------------------------------------------- */
/* COSMETIC --------------------------------------------------------------- */
.sibling-fade {
display: flex;
padding: 0;
}
.sibling-fade__item {
list-style-type: none;
padding: 0 1rem;
transition: opacity 0.2s;
}
.sibling-fade:hover .sibling-fade__item:not(:hover) {
opacity: 0.4;
}
/* UTILITY ---------------------------------------------------------------- */
/* STATE ------------------------------------------------------------------ */