-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1025 from lokonli/v3.10-master
V3.10 master
- Loading branch information
Showing
127 changed files
with
11,157 additions
and
9,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@import url('./bootstrap.min.css'); | ||
#loaderHolder { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
background-color: #000; | ||
z-index: 99999; | ||
text-align: center; | ||
} | ||
|
||
.loader { | ||
margin: 0 auto; | ||
border: 10px solid #f3f3f3; | ||
border-top: 10px transparent; | ||
border-bottom: 10px transparent; | ||
border-radius: 50%; | ||
width: 320px; | ||
height: 320px; | ||
animation: pulsate 2s ease-out; | ||
animation-iteration-count: infinite; | ||
} | ||
|
||
@keyframes pulsate { | ||
0% { | ||
transform: scale(0.1); | ||
opacity: 0; | ||
} | ||
50% { | ||
opacity: 1; | ||
} | ||
100% { | ||
transform: scale(0.8); | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.loaderHeader { | ||
color: #fff; | ||
font-size: 1.5em; | ||
margin-top: 50px; | ||
} | ||
|
||
#hide { | ||
color: white; | ||
font-size: 200%; | ||
width: 100%; | ||
margin: 0; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
} | ||
|
||
body { | ||
font-size: 11px; | ||
} | ||
|
||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.