-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 903 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
* {
font-family: helvetica;
}
body {
margin: 0;
padding: 0;
}
.btn {
padding: 15px 20px;
font-weight: bold;
border: none;
transition: background-color linear 0.2s;
}
.btn:hover {
background-color: #EBF5FF;
cursor: pointer;
}
.algorithms .btn {
margin: 0;
}
#sortContainer {
background-color: #EBF5FF;
padding: 20px;
box-shadow: inset 0px 0px 9px rgba(0, 0, 0, 0.2);
}
.bar {
position: relative;
border-radius: 5px 5px 5px 5px;
margin-right: 10px;
float: left;
width: 30px;
text-align: center;
}
.bar:hover {
box-shadow: 0px 0px 5px #003366;
cursor: pointer;
}
.bar.normal {
background-color: #003366;
color: white;
font-weight: bold;
}
.bar.highlighted {
background-color: #00CC99;
color: white;
box-shadow: 0px 0px 5px #00CC99
}