-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorting.css
62 lines (62 loc) · 1.22 KB
/
sorting.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
57
58
59
60
61
62
body{
background-color: #010101 !important;
}
.heading{
color: #acdbdf;
text-align: center;
font-family: 'Libre Baskerville', serif;
margin-top: 40px;
}
.col{
color: #acdbdf;
display: inline-block;
}
.col span{
margin: 20px;
font-family:'Raleway', sans-serif;
}
.graph{
align-items: center;
margin-left: 50px;
}
.Sort-buttons{
float: right;
margin-right: 30px;
}
.new-array, .Sort-buttons button{
border: 2px solid #acdbdf;
color: #acdbdf;
background-color:#00000000;
border-radius: 10px;
margin-left: 20px;
font-family: 'Raleway', sans-serif;
margin-top: 20px;
padding: 5px 10px;
}
.new-array:focus, .Sort-buttons button:focus{
background-color: #acdbdf;
color: #010101;
font-weight: bold;
box-shadow:0 0 20px #acdbdfbb;
border-color: #69cad3;
}
.new-array:hover, .Sort-buttons button:hover{
background-color: #acdbdf ;
color: #010101;
transition: 0.5s;
}
.flex-container{
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 500px;
justify-content: center;
transition: 2s all ease;
}
.bar{
width: 10px;
bottom: 0;
background-color: #f0ece2;
margin-right: 2px;
}