-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
64 lines (55 loc) · 1.08 KB
/
menu.css
File metadata and controls
64 lines (55 loc) · 1.08 KB
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
section#app_menu{
height:20px !important;
}
ul {
display: block;
max-height: 20px !important;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #d3cbbe;
}
li {
max-height: 20px !important;
padding:1px;
margin-left:4px;
text-underline-offset: 1px;
margin-right:4px;
float: left;
}
li a, .dropbtn {
height:20px !important;
display: inline-block;
color:#222;
text-align: center;
text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
background-color: #a59b8a;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
top: 20px;
background-color: #d3cbbe;
width:100px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
padding:1px;
padding-left:2px;
padding-right:2px;
color: black;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {background-color: #a59b8a;}
.dropdown:hover .dropdown-content {
display: block;
}