-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 719 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 719 Bytes
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
.navbar {
font-family: Arial, Helvetica, sans-serif;
position: fixed;
top: 0;
left: 0;
background-color: #151515;
color: white;
font-size: 14px;
font-weight: bold;
width: 100%;
height: 45px;
display: flex;
align-items: center;
overflow: hidden;
}
.navbar ul {
display: flex;
align-items: center;
list-style-type: none;
height: 100%;
}
.navbar li:hover {
background-color: #f7f7f7;
}
.navbar li {
padding-top: 14px;
padding-bottom: -14px;
padding-left: 10px;
padding-right: 10px;
height: 100%;
}
.navbar li:hover {
color: black;
}
.navbar a {
height: 100%;
text-decoration: none;
color: white;
}
body {
font-family: "Open Sans", sans-serif;
margin: 0px;
}