-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorting.css
78 lines (74 loc) · 1.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* transition for sorting bars in heading starts here */
.heading:hover{
cursor: pointer;
}
.myanimation{
display: inline-block;
width:2em;
/* transition: 1s ease-in-out; */
margin-left: 25px;
}
@keyframes bar-shorting{
from{
transform: translateX(0em);
}
to{
transform: translateX(1em);
}
}
.myanimation1{
display: inline-block;
height: 30px;
width: 7%;
border-radius: 10px;
background-color: rgb(54, 127, 168);
animation: bar-shorting 1s ease-in-out 0.5s infinite alternate;
}
.myanimation2{
display: inline-block;
height: 15px;
width: 7%;
border-radius: 10px;
background-color: rgb(54, 127, 168);
/* background-color: darkgoldenrod */
}
.myanimation3{
display: inline-block;
height: 25px;
width: 7%;
border-radius: 10px;
background-color: rgb(54, 127, 168);
}
/* transition for sorting bars in heading ends here*/
.mybdy{
background-color:#E8F6EF;
}
.mybtn{
margin:2px;
transition: 1s ease-in-out;
}
.mybtn:hover{
transform:scale(1.2);
}
.heading{
margin-left: 15px;
font-family: 'Praise', cursive;
margin-right: 50px;
/* font-size: 250%; */
display: inline-block;
}
.bars{
margin: 5% auto;
padding: auto 10px;
width:95%;
}
.speed-size{
margin:4px 10%;
}
.speed{
display: inline-block;
}
.size{
display: inline-block;
}
/* #b3edeee0 */