File size: 958 Bytes
1e92f2d |
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 |
@mixin flexContainer($jc) {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: $jc;
align-items: center;
}
@mixin style($size, $color, $bold: normal) {
font-size: $size;
color: $color;
font-weight: $bold;
}
@mixin wh($w, $h) {
width: $w;
height: $h;
}
@mixin position($type, $top, $right, $bottom, $left) {
position: $type;
left: $left;
top: $top;
right: $right;
bottom: $bottom;
}
@mixin fixed($t, $l) {
position: fixed;
top: $t;
left: $l;
}
.JoL-player-container{
@keyframes show {
0% {
opacity: 0;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
@keyframes scaleAnimate {
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
@keyframes rotateAnimate {
0% {
transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
}
}
} |