-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 752 Bytes
/
Copy pathstyle.css
File metadata and controls
41 lines (36 loc) · 752 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
.draw-area {
border: 1px solid #000;
width: 500px;
height: 500px;
position: relative;
}
.draw-area div {
position: absolute;
}
.rect {
background: blue;
border: 3px solid #ccc;
border-top-color: #c0392b;
border-bottom-color: #9b59b6;
border-right-color: #27ae60;
border-left-color: #2980b9;
}
.origin-rect {
background: rgba(0, 0, 0, 0.4);
}
/*.test-point {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.5);
margin-left: -5px;
margin-top: -5px;
}
.old-point {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(251, 72, 3, 0.8);
margin-left: -5px;
margin-top: -5px;
}*/