-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.css
More file actions
68 lines (65 loc) · 1.41 KB
/
shared.css
File metadata and controls
68 lines (65 loc) · 1.41 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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');
*{
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main-header{
background-color: black;
position: sticky;
top: 0;
padding: 0.8rem;
z-index: 100;
}
.logo,
.profile{
width: 40px;
height: 40px;
background-color: white;
border-radius: 50%;
}
.logo{
position: relative;
}
.astu{
position: absolute;
left: 8.8%;
color: white;
font-size: 27px;
text-decoration: none;
font-weight: bold;
}
.main-nav{
width: 90%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.main-nav-items{
list-style: none;
display: flex;
align-items: center;
}
.main-nav-item{
margin: 0px 8px;
}
.main-nav-item a{
color: white;
text-decoration: none;
font-size: 1.1rem;
}
.main-nav-item a:hover{
border-bottom: 0.6px solid white;
}
@keyframes modal{
0%{
transform:scale(0);
opacity: 0;
}
100%{
transform: scale(1);
opacity: 1;
}
}