-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrlprez.css
69 lines (59 loc) · 1.02 KB
/
rlprez.css
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
69
/*!
* Copyright (c) Atomi Systems, Inc. All rights reserved.
* Version: 9.1.0
* Date: 2023.06.02
*/
#xCYTIHJ1 .ap-focused {
outline: 1px dashed black;
outline-offset: 1px;
}
#xCYTIHJ1 p {
margin: 0;
}
#xCYTIHJ1 ol,ul {
margin-top: 0px;
margin-bottom: 0px;
}
#xCYTIHJ1 {
-webkit-tap-highlight-color: transparent;
}
/* Hotspot animation */
@keyframes pulsate {
0% {
transform: scale(1);
opacity: 0.8;
}
45% {
transform: scale(1.75);
opacity: 0;
}
}
.ap-hotspot {
position: absolute;
transition: all .3s ease;
cursor: pointer;
border-radius: 50%;
z-index: 1;
}
.ap-hotspot .hs-ring {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid;
margin: -1px auto auto -1px;
opacity: 0;
pointer-events: none;
animation: pulsate 3s ease-out infinite;
}
.ap-hotspot:hover .hs-ring {
animation: none;
}
.ap-select::-ms-expand {
display: none;
}
table, th, td {
border-collapse: collapse;
}