mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 10:26:15 -04:00
58 lines
1,004 B
CSS
58 lines
1,004 B
CSS
![]() |
#editorloadingbox {
|
||
|
padding-top: 100px;
|
||
|
padding-bottom: 100px;
|
||
|
font-size: 2.5em;
|
||
|
color: #aaa;
|
||
|
text-align: center;
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 30px;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
#editorloadingbox .passForm{
|
||
|
padding:10px;
|
||
|
}
|
||
|
|
||
|
#editorloadingbox input{
|
||
|
padding:10px;
|
||
|
}
|
||
|
|
||
|
#editorloadingbox button{
|
||
|
padding:10px;
|
||
|
}
|
||
|
|
||
|
.loadingAnimation{
|
||
|
-webkit-animation: loadingAnimation 2s infinite linear;
|
||
|
animation: loadingAnimation 2s infinite linear;
|
||
|
font-family: "fontawesome-etherpad";
|
||
|
font-size:24px;
|
||
|
z-index:150;
|
||
|
width:25px;
|
||
|
height:25px;
|
||
|
}
|
||
|
|
||
|
.loadingAnimation:before{
|
||
|
content: "\e80e";
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes loadingAnimation {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|
||
|
@keyframes loadingAnimation {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|