mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-27 10:56:16 -04:00
css: split base CSS code into subfiles (without modifications)
This commit is contained in:
parent
0b0608d7d4
commit
4177b3f943
13 changed files with 1263 additions and 1272 deletions
58
src/static/css/pad/loadingbox.css
Normal file
58
src/static/css/pad/loadingbox.css
Normal file
|
@ -0,0 +1,58 @@
|
|||
#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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue