File size: 1,168 Bytes
f127f19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* rtemislive.scss */

/* rthelp */
.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;
}

// modify bs link color only for body links
// card-body a {
//   color: $primary !important;
// }

.rt-tooltip {
  background-color: #282828aa;
  color: orange;
  border-radius: 10px;
}

// Border animation
.rthelp,
.rthelp-inline {
  // animation: highlight-border 1s ease-in-out forwards;
  animation-name: highlight-border;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  // animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

@keyframes highlight-border {
  0% {
    border-color: transparent;
  }

  50% {
    border-color: $info;
  }

  100% {
    border-color: transparent;
  }
}

// theme switch
#lightson {
  margin-top: auto;
  margin-bottom: auto;
}