mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-20 00:29:34 +05:30
v4.2.7
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
z-index: 10;
|
||||
z-index: 3;
|
||||
color: #333;
|
||||
border-top: 1px solid #ddd;
|
||||
font-size: 14px;
|
||||
|
||||
@@ -4,7 +4,7 @@ header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 97%;
|
||||
z-index: 1000;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.header.scrolled {
|
||||
|
||||
33
htdocs/assets/css/_preloader.css
Normal file
33
htdocs/assets/css/_preloader.css
Normal file
@@ -0,0 +1,33 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.preloader {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.loader {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 5px solid #677583;
|
||||
border-top: 5px solid #171c24;
|
||||
border-radius: 50%;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
|
||||
.preloader.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
Reference in New Issue
Block a user