-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (55 loc) · 842 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (55 loc) · 842 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
57
58
body{
margin:0;
padding: 0;
}
.container{
display: flex;
}
.container .o_image{
width: 50%;
border-right: 1px solid;
}
.container .p_image{
width: 50%;
border-left: 1px solid;
text-align: center;
}
span{
display: block;
text-align: center;
background-color: blue;
color:white;
padding: 5px;
margin-bottom: 5px;;
}
img{
border: 1px solid blue;
}
.b_container{
text-align: center;
width: 100%;
}
button{
width: 80px;
height: 30px;
border: none;
background-color: coral;
}
svg {
position: absolute;
top: 0;
left: 0;
}
.line {
stroke: blue;
stroke-width: 0.7px;
stroke-linecap: square;
}
.handle {
fill: blue;
pointer-events: all;
stroke:blue;
stroke-width: 2px;
cursor: move;
opacity: 0.8;
}