bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/loading-screen/styles.scss

71 lines
1.1 KiB
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
2016-07-29 03:49:16 +08:00
/* Variables
* ==========
*/
:root {
--loader-bg: var(--color-gray-dark);
--loader-bullet: var(--color-white);
--loader-message-color: var(--color-white);
}
2016-07-29 03:49:16 +08:00
.background {
position: fixed;
2016-07-29 03:49:16 +08:00
display: flex;
flex-flow: column;
justify-content: center;
width: 100%;
height: 100%;
background-color: var(--loader-bg);
2016-07-29 03:49:16 +08:00
}
2017-07-14 22:18:07 +08:00
.message {
font-size: var(--font-size-large);
color: var(--color-white);
2017-07-14 22:18:07 +08:00
text-align: center;
}
2016-07-29 03:49:16 +08:00
.spinner {
width: 100%;
text-align: center;
height: 22px;
margin-bottom: var(--md-padding-x);
2016-07-29 03:49:16 +08:00
}
.spinner > div {
width: 18px;
height: 18px;
margin: 0 5px;
background-color: var(--loader-bullet);
2016-07-29 03:49:16 +08:00
border-radius: 100%;
display: inline-block;
:global(.animationsEnabled) & {
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
2016-07-29 03:49:16 +08:00
}
.spinner .bounce1 {
:global(.animationsEnabled) & {
2019-03-13 05:08:50 +08:00
animation-delay: -0.32s;
}
2016-07-29 03:49:16 +08:00
}
.spinner .bounce2 {
:global(.animationsEnabled) & {
2019-03-13 05:08:50 +08:00
animation-delay: -0.16s;
}
2016-07-29 03:49:16 +08:00
}
@keyframes sk-bouncedelay {
0%,
80%,
100% {
2016-07-29 03:49:16 +08:00
transform: scale(0);
}
40% {
2016-07-29 03:49:16 +08:00
transform: scale(1.0);
}
}