-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 927 Bytes
/
style.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
.container {
display: flex;
flex-direction: column;
}
#sortingAlgorithmsChart {
width: 100%;
max-width: 1200px;
pointer-events: none;
}
.heading {
color: rgb(235, 235, 5);
background-color: green;
margin: 0;
padding: 0;
}
.navbar {
list-style-type: none;
margin: 0;
padding: 0;
background-color: aquamarine;
overflow: hidden;
}
.navbar li {
float: left;
margin: 5px;
}
.navbar button {
background-color: rgb(219, 189, 235);
color: black;
font-size: larger;
border: 1px solid salmon;
border-radius: 10px;
padding: 5px;
}
.dropdown-content {
display: none;
position: absolute;
width: 115px;
}
.dropdown-content button {
display: block;
width: 100%;
}
.navbar button:hover {
background-color: rgb(132, 45, 213);
cursor: pointer;
}
.dropdown-content:hover {
background-color: rgb(187, 165, 207);
}
.dropdown:hover .dropdown-content {
display: block;
}