-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsorting.css
More file actions
55 lines (49 loc) · 1.02 KB
/
sorting.css
File metadata and controls
55 lines (49 loc) · 1.02 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
body {
background: linear-gradient(180deg, #27292e 55%, #2f3239 45%);
padding: 0 20px 30px 0;
line-height: 1.4;
}
.flex-container {
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 500px;
justify-content: center;
transition: 2s all ease;
}
.flex-item {
background: rgb(30, 253, 253);
border: 1pt solid black;
width: 10px;
transition: 0.1s all ease;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
h1 {
color: #fff;
font-size: 35px;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
font-weight: bold;
text-align: center;
margin-top: 10px;
}
#input {
display: flex;
padding: 0;
justify-content: space-between;
margin-left: 0px;
}
.btn {
color: #3498db;
border-color: #3498db;
margin-left: 3px;
margin-top: 5px;
height: 60px;
width: 120px;
font-size: small;
box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}