-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (32 loc) · 710 Bytes
/
style.css
File metadata and controls
44 lines (32 loc) · 710 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
/*- White: hsl(0, 0%, 100%)
- Black: hsl(0, 0%, 0%)
- Dark Gray: hsl(0, 0%, 55%)
- Very Dark Gray: hsl(0, 0%, 41%)
- Mobile: 375px
- Desktop: 1440px
- Font size: 15px
### Fonts
- Family: [Alata](https://fonts.google.com/specimen/Alata)
- Weight: 400
- Family: [Josefin Sans](https://fonts.google.com/specimen/Josefin+Sans)
- Weight: 300*/
* {
box-sizing: border-box;
}
body {
margin:0;
font-size: 40px;
font-family: Josefin sans-serif;
font-weight: 300;
}
.main {
display: grid;
grid-template-columns: minmax(1em, 1fr) minmax(0px, 500px) minmax(1em, 1fr);
grid-column-gap: 2em;
}
h1,
h3,
ul {
grid-column: 2/-2;
}
.icon