forked from mars/heroku-cra-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
global.scss
63 lines (52 loc) · 824 Bytes
/
global.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
54
55
56
57
58
59
60
61
62
63
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
--color-white: #ffffff;
--color-gray: #eeeeee;
--color-primary: #1e508a;
--color-primary-dark: #1c5393;
--color-green: #29b533;
--color-green-light: rgba(41, 181, 51, 0.5);
font-family: Helvetica, Arial, sans-serif;
font-size: 18px;
font-weight: bold;
letter-spacing: 0.41px;
color: var(--color-primary);
}
h1 {
font-size: 33px;
line-height: 40px;
letter-spacing: 0.75px;
}
.row {
display: flex;
flex-direction: row;
}
.col {
display: flex;
flex-direction: column;
}
.center {
align-items: center;
justify-content: center;
}
.centerPrimary {
align-items: center;
}
a {
color: inherit;
&:visited {
color: inherit;
}
}
.container {
padding: 24px;
}
p {
margin: 12px 24px;
}