-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy paththeme.css
More file actions
45 lines (36 loc) · 776 Bytes
/
theme.css
File metadata and controls
45 lines (36 loc) · 776 Bytes
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
:root {
--font-name--heading: 'Roboto Mono', sans-serif;
--font-name--paragraph: 'Open Sans', sans-serif;
--font-name--marana: 'Marana', sans-serif;
/* Colors definitions */
--white: #ffffff;
--iron: #cac9c9;
--black: #000000;
--wild-sand: #f5f5f5;
/* Colors applications */
--primary-color: #ed4337;
--text-color: #464444;
--schedule-bar-color: var(--wild-sand);
/* sizes */
--size-heading-1: 3.5rem;
--size-heading-2: 2rem;
--size-text: 2rem;
--grid-columns: 1fr;
@media (--tablet) {
--grid-columns: 1fr 1fr;
}
@media (--laptop) {
--grid-columns: 1fr 1fr 1fr;
}
}
#___gatsby {
min-height: 100vh;
}
#gatsby-focus-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex-grow: 1;
}