-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral-styles.css
89 lines (71 loc) · 1.17 KB
/
general-styles.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
79
80
81
82
83
84
85
86
87
88
89
/* font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,400;0,500;0,600;1,400&display=swap');
:root {
--athens-gray: #e9e7ee;
--silver-sand: #b7bcbf;
--vista-blue: #9cd9bc;
--salmon: #ff787b;
--dusty-gray: #9f9c9d;
--oxford-blue: #354652;
/* inherited colors */
--text: var(--oxford-blue);
/* spacing */
--spacing-unit: 0.6rem;
--margin: 0.6rem;
--padding: 1.25rem;
}
html {
box-sizing: border-box;
font-size: 18px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
font-family: 'Raleway', sans-serif;
font-weight: normal;
line-height: 1.75;
padding-top: 70px;
}
html, body {
margin: 0;
padding: 0;
}
/* h1, h2, h3, h4, h5, h6 {
margin: 3rem 0 1.38rem;
line-height: 1.3;
} */
h1 {
font-size: 2.488rem;
}
h2 {
font-size: 2.074rem;
}
h3 {
font-size: 1.728rem;
}
h4 {
font-size: 1.44rem;
}
h5 {
font-size: 1.2rem;
}
/* p {
margin-bottom: 1rem;
} */
ol, ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
a {
padding: 0;
margin: 0;
}