-
Notifications
You must be signed in to change notification settings - Fork 62
/
app.css
78 lines (63 loc) · 931 Bytes
/
app.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
73
74
75
76
77
78
/* Variabls */
:root {
--primary-blue: #2196f3;
--dark-blue: #1976d2;
--light-blue: #bbdefb;
--white: #ffffff;
--primary-text: #212121;
--secondary-text: #757575;
--light-gray: #bdbdbd;
}
/* Resets */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Helvetica, sans-serifs;
color: var(--primary-text);
}
/* Helper Classes */
/* Layout/Flexbox */
.flex {
display: flex;
}
.flex-center {
justify-content: center;
align-items: center;
}
.flex-column {
display: flex;
flex-direction: column;
}
.flex-grow-1 {
flex-grow: 1;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.hidden {
display: none;
}
.mb-2 {
margin-bottom: 20px;
}
/* Text Classes */
.primary-text {
color: var(--primary-text);
}
.secondary-text {
color: var(--secondary-text);
}
.light-text {
color: var(--light-blue);
}
.text-center {
text-align: center;
}
h1 {
font-size: 48px;
font-weight: 300;
}