-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (59 loc) · 1.01 KB
/
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
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
:root {
--primary-color: #ffffff;
--text-dark: #19356d;
--max-width: 100%;
}
* {
margin: 0;
font-family: "Libre Franklin", sans-serif;
font-weight: 400;
box-sizing: border-box;
padding: 1rem;
color: var(--text-dark);
font-size: 18px;
}
body {
margin: 8%;
font-weight: 100;
background-color: var(--primary-color);
margin-bottom: 0%;
}
h1 {
font-weight: 600;
font-size: 5cap;
color: var(--text-dark);
}
h2 {
font-weight: 600;
font-size: 2cap;
padding-bottom: 0;
padding-top: 2rem;
color: var(--text-dark);
}
ul {
padding-left: 3rem;
}
ul li {
padding: 0;
line-height: 1.7rem;
}
ol {
padding-left: 3rem;
}
ol li {
padding: 0;
line-height: 1.7rem;
}
canvas {
display: block;
align-self: center;
}
.grid__container {
display: grid;
grid-template-columns: 600px 900px;
gap: 2rem;
}
/* .grid_item {
background-color: var(--primary-color);
} */