-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsorting.css
More file actions
52 lines (43 loc) · 714 Bytes
/
sorting.css
File metadata and controls
52 lines (43 loc) · 714 Bytes
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
body{
background-color: #171515;
}
h1{
color: aqua;
text-align: center;
}
button{
border-style: double;
font-size: 17px;
border-radius: 10px;
cursor: pointer;
padding: 4px 6px 4px 6px;
}
button:hover{
background-color: #00FF00;
}
#newarr{
margin-right: 200px;
}
#bubble,#selection,#insertion,#merge,#quick,#sizer,#speed{
margin-right: 20px;
}
#bar{
color: red;
display: flex;
justify-content: center;
height: 400px;
flex-direction: row;
padding: 20px 30px 0px 10px;
}
.baritem {
background: yellow;
border: 1.25px solid blue;
width: 0.75%;
}
a{
text-decoration: none;
color: aqua;
}
a:hover{
color: #00FF00;
}