-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
68 lines (58 loc) · 1.19 KB
/
main.css
File metadata and controls
68 lines (58 loc) · 1.19 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
--light-accent:#f5f5f5;
--border-color:#ccc;
--accent-color:#E31E24;
}
body{
margin:0;
width:100vw;
height:100vh;
overflow-x:hidden;
}
body * {
font-family:"Poppins", sans-serif;
display:flex;
flex-direction:column;
align-items:center;
}
#navbar{
display:flex;
flex-direction:row;
justify-content:space-between;;
align-items:center;
width:calc(100vw - 256px);
padding:24px 128px;
}
#navbar > div{
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
gap:24px;
}
#navbar-left > a > img{
height:52px;
}
#navbar-left > a > h1{
font-size:24px;
margin: 0;
color:var(--accent-color);
}
.navbar-break{
margin:0 6px;
}
#navbar > div > a{
font-size:13px;
margin:0;
color:black;
font-weight:600;
text-decoration:none;
display:flex;
flex-direction:row;
align-items:center;
justify-content:flex-start;
}
#navbar-right > a > img{
height:18px;
}