-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
76 lines (67 loc) · 1.19 KB
/
index.css
File metadata and controls
76 lines (67 loc) · 1.19 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
73
74
75
76
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: monospace, Helvetica, sans-serif;
}
#sorting-container {
width: 1136px;
height: 610px;
display: flex;
flex-direction: row;
align-items: flex-end;
}
.array-element {
margin: 0 2px;
background-color: #121212;
display: flex;
align-items: flex-end;
justify-content: center;
padding-bottom: 4px;
/* vertical-align: bottom; */
}
.functionContainer {
margin-top: 10px;
/* background-color: #e94b3c; */
background-color: #010188;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 0;
/* height: 70px; */
}
.speedContainer {
display: flex;
width: 200px;
justify-content: space-between;
}
#speedText {
color: #ffffff;
font-size: 16px;
}
.buttonContainer {
margin-top: 8px;
display: flex;
flex-direction: row;
justify-content: space-around;
width: 900px;
}
.sortingAlgo {
display: flex;
flex-direction: row;
}
.btn {
background-color: #010188;
border: none;
color: #ffffff;
padding: 8px;
/* border-radius: 8px; */
font-size: 20px;
cursor: pointer;
font-family: monospace, Helvetica, sans-serif;
}
.btn:disabled {
color: #ff3535;
}