blob: 9bab72d55b676c4694581a595d0d8b8dc5b4e296 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
@import "../global/globalCssVariables.scss";
.documentLinksButton-menu {
width: 100%;
height: 100%;
position: relative;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}
.documentLinksButton-cont {
min-width: 20;
min-height: 20;
position: absolute;
}
.documentLinksButton,
.documentLinksButton-endLink,
.documentLinksButton-startLink {
height: 25px;
width: 25px;
position: absolute;
border-radius: 50%;
opacity: 0.9;
pointer-events: auto;
color: black;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 10px;
transition: transform 0.2s;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
&:hover {
// background: deepskyblue;
// transform: scale(1.05);
cursor: pointer;
}
}
.documentLinksButton {
background-color: black;
font-weight: bold;
&:hover {
transform: scale(1.05);
cursor: pointer;
}
}
.documentLinksButton-endLink {
border: $medium-blue 2px dashed;
color: $medium-blue;
&:hover {
background: $light-gray;
transform: scale(1.05);
cursor: pointer;
}
}
.documentLinksButton-startLink {
background-color: $medium-blue;
}
|