-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (52 loc) · 1.1 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #33333300;
padding: 20px 20px;
border: 1px solid rgba(0, 0, 0, 0.151);
}
/* Logo */
.logo a {
/* font-family: "Yellowtail", cursive; */
font-family: "Bebas Neue", sans-serif;
/* font-weight: 400; */
/* font-style: normal; */
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 34px;
font-weight: bold;
}
/* Navigation links */
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
font-weight: 400;
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 20px;
padding: 0px 12px;
transition: color 0.3s ease;
}
.nav-links a:hover {
/* background-color: #575757; */
text-decoration: underline;
color : rgb(255, 40, 75);
}
.nav-links a.active {
text-decoration: underline;
font-weight: bold;
/* color : rgb(4, 4, 4); */
}