-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 674 Bytes
/
style.css
File metadata and controls
45 lines (39 loc) · 674 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
.range-wrap {
width: 300px;
}
.field {
position: relative;
width: 200px;
height: 20px;
background-color: aquamarine;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 50vh;
}
.dragElement {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
background-color: blueviolet;
cursor: pointer;
}
.field-wrap {
display: flex;
align-items: center;
}
.result-block {
display: flex;
justify-content: space-between;
width: 300px;
margin-bottom: 20px;
}
.result-block__input {
width: 50px;
text-align: center;
}