soapbox/app/styles/loading.scss

197 wiersze
3.4 KiB
SCSS
Czysty Zwykły widok Historia

2022-03-21 18:09:01 +00:00
.loading-indicator-wrapper {
@apply h-screen w-screen flex justify-center items-center;
}
2020-06-03 02:11:01 +00:00
2022-03-21 18:09:01 +00:00
.loading-indicator {
@apply text-gray-50 text-xs uppercase flex flex-col items-center justify-center overflow-visible;
2020-06-03 02:11:01 +00:00
}
.loading-indicator__container {
2022-03-21 18:09:01 +00:00
@apply w-10 h-10 relative;
}
2020-06-03 02:11:01 +00:00
.loading-indicator__figure {
2022-03-21 18:09:01 +00:00
@apply absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-12 h-12 rounded-full bg-transparent;
border: 0 solid;
2020-06-03 02:11:01 +00:00
border-width: 6px;
2022-03-21 18:09:01 +00:00
border-color: #e5e7eb;
2020-06-03 02:11:01 +00:00
}
.no-reduce-motion .loading-indicator span {
animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.no-reduce-motion .loading-indicator__figure {
animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
2022-03-21 18:09:01 +00:00
.loading-indicator-wrapper .loading-indicator {
@apply h-screen w-screen items-center;
&__figure {
2022-03-21 18:09:01 +00:00
@apply border-gray-200;
}
}
2020-06-03 02:11:01 +00:00
@keyframes loader-figure {
0% {
2022-03-21 18:09:01 +00:00
@apply bg-gray-200 w-0 h-0;
2020-06-03 02:11:01 +00:00
}
29% {
2022-03-21 18:09:01 +00:00
@apply bg-gray-200;
2020-06-03 02:11:01 +00:00
}
30% {
2022-03-21 18:09:01 +00:00
@apply w-12 h-12 bg-transparent opacity-100;
border-width: 6px;
2020-06-03 02:11:01 +00:00
}
100% {
2022-03-21 18:09:01 +00:00
@apply w-12 h-12 border-0 opacity-0 bg-transparent;
2020-06-03 02:11:01 +00:00
}
}
@keyframes loader-label {
0% { opacity: 0.25; }
30% { opacity: 1; }
100% { opacity: 0.25; }
}
@keyframes heartbeat {
from {
transform: scale(1);
animation-timing-function: ease-out;
}
10% {
transform: scale(0.91);
animation-timing-function: ease-in;
}
17% {
transform: scale(0.98);
animation-timing-function: ease-out;
}
33% {
transform: scale(0.87);
animation-timing-function: ease-in;
}
45% {
transform: scale(1);
animation-timing-function: ease-out;
}
}
.no-reduce-motion .pulse-loading {
transform-origin: center center;
animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes shake-bottom {
0%,
100% {
transform: rotate(0deg);
transform-origin: 50% 100%;
}
10% {
transform: rotate(2deg);
}
20%,
40%,
60% {
transform: rotate(-4deg);
}
30%,
50%,
70% {
transform: rotate(4deg);
}
80% {
transform: rotate(-2deg);
}
90% {
transform: rotate(2deg);
}
}
.no-reduce-motion .shake-bottom {
transform-origin: 50% 100%;
animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) 2s 2 both;
}
.load-more {
display: block;
color: var(--primary-text-color);
background-color: transparent;
border: 0;
font-size: inherit;
text-align: center;
line-height: inherit;
margin: 0;
padding: 15px;
box-sizing: border-box;
width: 100%;
clear: both;
text-decoration: none;
&:hover,
&:focus {
2020-06-07 03:55:00 +00:00
background: var(--brand-color--faint);
2020-06-03 02:11:01 +00:00
}
}
.load-gap {
2020-06-07 03:55:00 +00:00
border-bottom: 1px solid var(--brand-color--med);
2020-06-03 02:11:01 +00:00
}
.regeneration-indicator {
text-align: center;
font-size: 16px;
font-weight: 500;
color: var(--primary-text-color);
2020-06-08 19:04:39 +00:00
background: var(--accent-color--faint);
2020-06-03 02:11:01 +00:00
cursor: default;
display: flex;
flex: 1 1 auto;
align-items: center;
justify-content: center;
padding: 20px;
border-radius: 10px;
@media screen and (max-width: 580px) {
border-radius: 0;
}
2020-06-03 02:11:01 +00:00
& > div {
width: 100%;
background: transparent;
padding-top: 0;
}
&__label {
strong {
display: block;
margin-bottom: 10px;
color: var(--primary-text-color);
}
span {
font-size: 15px;
font-weight: 400;
}
}
}
.ptr,
.ptr__children {
overflow: visible !important;
}