-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (45 loc) · 809 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
#bars-container {
position: relative;
z-index: 0;
background-color: rgb(20, 20, 20);
width: 1001px;
height: 502px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}
.bar {
position: absolute;
z-index: 1;
background-color: rgb(255, 255, 255);
transition: 30ms;
}
#buttons-container {
position: relative;
z-index: 0;
width: 1001px;
height: 80px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
button, select {
position: relative;
z-index: 1;
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
color: rgb(30, 30, 30);
border-radius: 15px;
height: 80px;
width: 300px;
margin-left: 15px;
margin-right: 15px;
background-color: rgb(245, 245, 245);
outline: none;
}
#algorithms {
font-size: 26px;
height: 50px;
top: -8px;
padding: 5px;
}