-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles3.css
More file actions
56 lines (50 loc) · 770 Bytes
/
Copy pathstyles3.css
File metadata and controls
56 lines (50 loc) · 770 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
54
55
56
body {
font-family: Arial, sans-serif;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
#image-container {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.draggable {
width: 100px;
height: 100px;
cursor: grab;
}
#range-chart {
position: relative;
width: 80%;
height: 400px;
border: 1px solid #000;
display: flex;
justify-content: space-around;
align-items: flex-start;
}
.range-label {
position: absolute;
top: 0;
width: 20%;
text-align: center;
font-size: 1.2em;
}
.range-label:nth-child(1) {
left: 0;
}
.range-label:nth-child(2) {
left: 20%;
}
.range-label:nth-child(3) {
left: 40%;
}
.range-label:nth-child(4) {
left: 60%;
}
.range-label:nth-child(5) {
left: 80%;
}