-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (48 loc) · 952 Bytes
/
styles.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
body {
font-family: "Montserrat";
background-image: radial-gradient(circle, #3f4450, #333541);
color: white;
margin: 0;
}
.body {
padding: 0 20rem;
}
/* Add a black background color to the top navigation */
.top-navbar {
background-color: #333;
position: sticky;
top: 0;
width: 100%;
height: 50px;
}
.top-navbar-links {
display: flex;
align-items: center;
overflow: hidden;
justify-content: space-evenly;
margin: 0 25%;
width:50%;
}
/* Style the links inside the navigation bar */
.top-navbar a {
/* width: 150px; */
height: 50px;
text-align: center;
line-height: 50px;
color: #f2f2f2;
text-decoration: none;
font-size: 18px;
}
/* Change the color of links on hover */
.top-navbar a:hover {
color: black;
}
a {
color: rgb(0, 110, 255);
text-decoration: none;
}
a.anchor {
color: white;
padding-top: 30px;
margin-top: -30px;
}