-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (65 loc) · 1.11 KB
/
style.css
File metadata and controls
72 lines (65 loc) · 1.11 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
65
66
67
68
69
70
71
72
* {
margin: 0px;
box-sizing: border-box;
padding: 0px;
}
.header {
width: 100%;
height: 70px;
background-color: bisque;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.generate {
height: 50%;
width: 30%;
border-radius: 10px;
}
.selection-sort {
height: 50%;
width: 30%;
border-radius: 10px;
}
.bubble-sort{
height: 50%;
width: 30%;
border-radius: 10px;
}
.merge-sort{
height: 50%;
width: 30%;
border-radius: 10px;
}
.quick-sort
{
height: 50%;
width: 30%;
border-radius: 10px;
}
.array-container {
height: calc(100vh - 80px);
width: 100%;
background-color:black blue;
overflow: scroll;
display: flex;
align-items: flex-end;
overflow: hidden;
}
.array-container div {
background-color:burlywood;
min-height: 10%;
width: 2%;
/* position: relative; */
top: 5%;
bottom: 0%;
}
.array-container .activeclass{
background-color: red;
}
.array-container .activeclass2{
background-color: green;
}
.array-container .activeclass3{
background-color:hotpink;
}