-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.css
54 lines (48 loc) · 919 Bytes
/
navigation.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
#upper-nav-bar {
position: relative;
top: 0;
width: 100%;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
font-size: 14px;
box-shadow: 2px 2px 4px 1px lightgray;
z-index: 30;
}
#upper-nav-bar li a {
top: 0;
float: left;
display: inline-block;
color: gray;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-weight: 600;
opacity: 0.5;
outline: none;
}
#logo {
float: left;
padding-left: 10px;
padding-right: 10px;
background-color: rgb(0, 0, 0, 0.1);
}
#bookmark-button {
float: right;
margin-top: 4.5px;
margin-right: 10px;
outline: none;
}
#bookmark-button:hover {
opacity: 0.5;
}
#upper-nav-bar .active-tab {
color: #D2811E;
opacity: 1.0;
border-bottom:4px solid #D2811E;
}
#upper-nav-bar li a:hover {
opacity: 1.0;
}