|
|
|
|
|
|
|
.rthelp { |
|
position: fixed !important; |
|
top: 33% !important; |
|
left: 50% !important; |
|
transform: translate(-50%, -50%); |
|
color: $info !important; |
|
margin: 11px; |
|
border: 0.5px solid transparent; |
|
border-radius: 10px; |
|
padding: 11px; |
|
} |
|
|
|
.rthelp-inline { |
|
display: inline-block; |
|
color: $info !important; |
|
margin: 11px; |
|
border: 0.5px solid transparent; |
|
border-radius: 10px; |
|
padding: 11px; |
|
text-align: left; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
.rt-tooltip { |
|
background-color: #282828aa; |
|
color: orange; |
|
border-radius: 10px; |
|
} |
|
|
|
|
|
.rthelp, |
|
.rthelp-inline { |
|
|
|
animation-name: highlight-border; |
|
animation-duration: 6s; |
|
animation-timing-function: ease-in-out; |
|
|
|
animation-iteration-count: infinite; |
|
} |
|
|
|
@keyframes highlight-border { |
|
0% { |
|
border-color: transparent; |
|
} |
|
|
|
50% { |
|
border-color: $info; |
|
} |
|
|
|
100% { |
|
border-color: transparent; |
|
} |
|
} |
|
|
|
|
|
#lightson { |
|
margin-top: auto; |
|
margin-bottom: auto; |
|
} |
|
|