blob: 239c2ce564bbc948df213b21b7cb58566b331691 (
plain)
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
|
.collectionfreeformlinkview-linkLine {
stroke: black;
transform: translate(10000px,10000px);
opacity: 0.5;
pointer-events: all;
}
.collectionfreeformlinkview-linkCircle {
stroke: rgb(0,0,0);
opacity: 0.5;
transform: translate(10000px,10000px);
pointer-events: all;
cursor: pointer;
}
.collectionfreeformlinkview-linkText {
stroke: rgb(0,0,0);
opacity: 0.5;
transform: translate(10000px,10000px);
pointer-events: all;
}
.linkview-ele {
transform: translate(10000px,10000px);
pointer-events: all;
&.linkview-line {
stroke: black;
stroke-width: 2px;
opacity: 0.5;
}
}
.linkview-button {
width: 200px;
height: 100px;
border-radius: 5px;
padding: 10px;
position: relative;
background-color: black;
cursor: pointer;
p {
width: calc(100% - 20px);
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
|