-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeSort.css
More file actions
53 lines (47 loc) · 854 Bytes
/
Copy pathMergeSort.css
File metadata and controls
53 lines (47 loc) · 854 Bytes
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
body {
font-family: Arial, sans-serif;
background: #1e1e1e;
color: white;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
#sortArea {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.row {
display: flex;
gap: 10px;
position: relative;
}
.box {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: bold;
color: white;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.arrow {
position: absolute;
width: 2px;
height: 30px;
background: white;
left: 50%;
top: 100%;
}