-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbar.css
74 lines (55 loc) · 1.1 KB
/
Navbar.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.navbar-container {
background-color:rgb(229, 230, 230);
height: 75px;
display: flex;
align-items: center;
justify-content: center;
opacity:0.6;
}
.navbar-top {
list-style-type: none;
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: row;
width:80%;
margin:0 auto;
}
.navbar-top li a {
color:gray;
text-transform: uppercase;
font-family: Georgia;
text-decoration: none;
padding-bottom: 20px;
letter-spacing:0.9px;
}
.navbar-top li a:hover{
border-bottom: 2px solid black;
border-width: 3px;
opacity:1.0;
color:black;
}
.navbar-top li:focus{
border-bottom: 2px solid black;
border-width: 3px;
opacity:1.0;
color:black;
}
@media(max-width:550px){
.navbar-container {
height: 180px;
}
.navbar-top {
display:flex;
flex-direction: column;
width:80%;
margin:0 auto;
}
.navbar-top li {
margin-top: 5px;
}
.navbar-top li a:hover, :focus {
padding-bottom: 0;
opacity:0.6;
}
}