-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobalStyles.css
82 lines (68 loc) · 1.26 KB
/
globalStyles.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
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Outfit:[email protected]&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #F3F0E3;
padding: 32px;
min-height: 100vh;
display: flex;
flex-direction: column;
}
nav {
width: 100%;
height: 64px;
display: flex;
justify-content: flex-end;
}
nav ul {
width: 500px;
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
}
nav ul li {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
h1 {
font-family: "Outfit", sans-serif;
font-weight: 700;
font-size: 96px;
}
h2 {
font-family: "Cabin", sans-serif;
font-weight: 700;
font-size: 32px;
}
h3, h4, h5, h6, p {
font-family: "Cabin", sans-serif;
}
.warning {
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #ff5050;
color: #fff;
width: 100vw;
height: 32px;
}
@media (max-width: 800px) {
h1 {
font-size: 48px;
}
h2 {
font-family: "Cabin", sans-serif;
font-weight: 700;
font-size: 16px;
}
}