BetterDiscordApp-v2/client/src/styles/partials/generic/spinners/6.scss

187 lines
3.2 KiB
SCSS
Raw Normal View History

2018-08-15 04:03:56 +02:00
.bd-spinner6 {
width: 40px;
height: 40px;
position: relative;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
&::before {
2018-08-15 11:42:43 +02:00
content: '';
background: #fff;
height: 10px;
width: 10px;
position: absolute;
right: 5px;
bottom: 5px;
2018-08-15 05:33:42 +02:00
-webkit-animation: bd-spinner6AnimBefore 2s cubic-bezier(.4, 0, 0, 1) infinite;
animation: bd-spinner6AnimBefore 2s cubic-bezier(.4, 0, 0, 1) infinite;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
&::after {
2018-08-15 11:42:43 +02:00
content: '';
background: #fff;
height: 10px;
width: 10px;
position: absolute;
left: 5px;
top: 5px;
2018-08-15 05:33:42 +02:00
-webkit-animation: bd-spinner6AnimAfter 2s cubic-bezier(.4, 0, 0, 1) infinite;
animation: bd-spinner6AnimAfter 2s cubic-bezier(.4, 0, 0, 1) infinite;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
}
2018-08-15 05:33:42 +02:00
@-webkit-keyframes bd-spinner6AnimBefore {
0% {
bottom: 10px;
right: 10px;
width: 10px;
height: 10px;
}
25% {
bottom: 10px;
right: 10px;
width: 20px;
height: 10px;
}
50% {
bottom: 10px;
right: 20px;
width: 10px;
height: 10px;
}
75% {
bottom: 10px;
right: 20px;
width: 10px;
height: 20px;
}
100% {
bottom: 20px;
right: 20px;
width: 10px;
height: 10px;
}
}
2018-08-15 05:33:42 +02:00
@keyframes bd-spinner6AnimBefore {
0% {
bottom: 10px;
right: 10px;
width: 10px;
height: 10px;
}
25% {
bottom: 10px;
right: 10px;
width: 20px;
height: 10px;
}
50% {
bottom: 10px;
right: 20px;
width: 10px;
height: 10px;
}
75% {
bottom: 10px;
right: 20px;
width: 10px;
height: 20px;
}
100% {
bottom: 20px;
right: 20px;
width: 10px;
height: 10px;
}
}
2018-08-15 05:33:42 +02:00
@-webkit-keyframes bd-spinner6AnimAfter {
0% {
top: 10px;
left: 10px;
width: 10px;
height: 10px;
}
25% {
top: 10px;
left: 10px;
width: 20px;
height: 10px;
}
50% {
top: 10px;
left: 20px;
width: 10px;
height: 10px;
}
75% {
top: 10px;
left: 20px;
width: 10px;
height: 20px;
}
100% {
top: 20px;
left: 20px;
width: 10px;
height: 10px;
}
}
2018-08-15 05:33:42 +02:00
@keyframes bd-spinner6AnimAfter {
0% {
top: 10px;
left: 10px;
width: 10px;
height: 10px;
}
25% {
top: 10px;
left: 10px;
width: 20px;
height: 10px;
}
50% {
top: 10px;
left: 20px;
width: 10px;
height: 10px;
}
75% {
top: 10px;
left: 20px;
width: 10px;
height: 20px;
}
100% {
top: 20px;
left: 20px;
width: 10px;
height: 10px;
}
}