-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
62 lines (53 loc) · 1003 Bytes
/
index.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
.toolbar{
width: 100%;
height: 5vh;
background-color: white;
}
/* Some stuff for Drop Down Menu*/
.dropbtn {
background-color: white;
color: grey;
width: 8vh;
border: none;
cursor: pointer;
height: 100%;
display: flex;
justify-content: center;
}
.account{
background: white;
border: none;
float: right;
}
.dropdown {
position: relative;
display: inline-flex;
float: right;
height: 100%;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 0;
top: 5vh;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #f9f9f9;
}
.account:hover {
background-color: #f9f9f9;
}