2019-02-05 18:17:36 +01:00
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
|
transition: opacity .2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
|
|
|
|
|
{
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-enter {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-enter-active {
|
|
|
|
|
animation: slide-in 0.2s ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-leave {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-leave-active {
|
|
|
|
|
animation: slide-out 0.5s ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-in {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(-500px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-out {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(1600px);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-13 13:40:17 +01:00
|
|
|
|
2019-07-12 18:23:16 +02:00
|
|
|
.my-notif-class {
|
2019-03-13 13:40:17 +01:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2019-03-14 01:24:59 +01:00
|
|
|
|
|
|
|
|
.mybanner {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2019-03-30 02:57:40 +01:00
|
|
|
|
|
|
|
|
.lowperc {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
2019-07-12 18:23:16 +02:00
|
|
|
|
2019-03-30 02:57:40 +01:00
|
|
|
.medperc {
|
|
|
|
|
color: blue;
|
|
|
|
|
}
|
2019-07-12 18:23:16 +02:00
|
|
|
|
2019-03-30 02:57:40 +01:00
|
|
|
.highperc {
|
|
|
|
|
color: green;
|
|
|
|
|
}
|
2019-04-05 16:16:29 +02:00
|
|
|
|
|
|
|
|
.hide-if-small {
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thiny-if-small {
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
max-width: 22px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-12 18:23:16 +02:00
|
|
|
|
|
|
|
|
.tothebottomfixed {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tothetop {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
top: 20px;
|
|
|
|
|
}
|