forked from KRISHNA-GOPALA/sorting-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
122 lines (118 loc) · 2.01 KB
/
index.css
File metadata and controls
122 lines (118 loc) · 2.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
*{
margin: 0;
}
@font-face {
font-family: "Pacifico";
src: url("Fonts/Pacifico-Regular.woff2") format('woff2');
}
#container{
display: flex;
margin: 0 auto;
width: intrinsic;
width: -moz-max-content;
width: -webkit-max-content;
height: 50%;
}
#b{
display: inline-block;
margin-left: 1vw;
width: 1vw;
}
#d{
display: inline-block;
margin-left: 1vw;
width: 1vw;
}
#bars, #delay{
vertical-align: middle;
}
.header{
display: flex;
flex-wrap: wrap;
font-weight: bold;
background-color: #fd0081;
margin: 0;
color: white;
padding: 1vw 1vw 1vw 1vw;
margin-bottom: 2vw;
}
h1{
font-size: 3vw;
font-family: Pacifico, cursive;
font-weight: lighter;
width: 20%
text-align: center;
}
.range{
justify-content: space-evenly;
display: flex;
flex-wrap: wrap;
flex-flow: wrap;
}
.slide{
margin: 0vw 1vw;
}
.bar{
border: 0.05vw solid black;
width:0.6vw;
margin:0.1vw;
background-color: #fd0081;
}
.sorts{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.vars{
width: 60%;
align-self: flex-start;
text-align: center;
font-size: 1.3vw;
font-family: sans-serif;
}
input[type="button"] {
margin: 1.5vw 0.5vw;
}
input[type="button"]:hover, button:hover{
background-color: #f8a7a7;
cursor: pointer;
color: #1200a4;
}
input[type="button"]:disabled, input[type="range"]:disabled{
background-color: #ffffff;
cursor: not-allowed;
color: blue;
}
input[type="button"], button{
background: white;
border: none;
padding: 1.3vh;
border-radius: 9vw;
min-width: 8vw;
color: rgb(6, 6, 223);
font-size: 1.2vw;
}
/* footer */
.footerCol {
padding: 50px 0;
text-align: center;
}
.socialCol li {
display: inline-block;
}
.socialCol li + li {
padding-left: 35px;
}
.socialCol img {
max-width: 30px;
max-height: 30px;
-o-object-fit: contain;
object-fit: contain;
}
.copyrightCol {
padding: 30px 0 0;
font-size: 18px;
}
.copyrightCol p {
margin: 0;
}