| Server IP : 216.250.13.251 / Your IP : 216.73.217.37 Web Server : nginx/1.24.0 System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/gunay/wp-content/themes/rttheme19/css/sass/partials/ |
Upload File : |
/* ==========================================================================
PAGE LOADING EFFECT
========================================================================== */
.js .rt-loading{
background-image: none;
background-color: #fff;
overflow-y: hidden;
#loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
overflow: hidden;
@include transition( opacity 1s ease );
&:before{
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
opacity: 0.8;
left: 0;
top: 0;
}
}
&.rt-leaving #loader-wrapper{
&:before{
opacity: 1;
}
}
#loader {
display: block;
position: relative;
left: 50%;
top: 50%;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border-radius: 50%;
border: 1px solid transparent;
border-top-color: #bbb;
border-bottom-color: #bbb;
@include animation(spin 1.7s linear infinite);
z-index: 10001;
&:before {
content: "";
position: absolute;
top: 35px;
left: 35px;
right: 35px;
bottom: 35px;
border-radius: 50%;
border: 1px solid transparent;
border-top-color: #bbb;
border-bottom-color: #bbb;
@include animation(spin-reverse .6s linear infinite);
}
}
// Bourbon mixins
@include keyframes(spin) {
0% {
@include transform(rotate(0deg));
}
100% {
@include transform(rotate(359deg));
}
}
@include keyframes(spin-reverse) {
0% {
@include transform(rotate(0deg));
}
100% {
@include transform(rotate(-359deg));
}
}
/* Loaded styles */
.loaded #loader {
opacity: 0;
transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
visibility: hidden;
transform: translateY(-100%);
transition: all 0.3s 1s ease-out;
}
}