-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavb.css
More file actions
39 lines (36 loc) · 740 Bytes
/
Copy pathnavb.css
File metadata and controls
39 lines (36 loc) · 740 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
body {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #387dcc;
font-size: 20px;
}
.navbar{
height: 90px;
text-align: center;
}
.navbarlist{
list-style:none;
float: left;
line-height: 9rem;
margin: 0;
padding: 0;
text-align: center;
}
.navbarlist li {
display: inline-block;
margin: 0.1rem 2rem;
}
.navbar ul{
justify-content: center;
}
.navbarlist li a {
color: #5decef;
text-decoration: none;
transition: all 0.3s linear 0s;
text-transform: uppercase;
padding: 15px;
}
.navbarlist li a:hover {
color: white;
padding-bottom: 0.7rem;
border-bottom: 0.2rem solid white;
}