47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="keywords" content="">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<title>Polisplexity</title>
|
|
|
|
<link href="{{ asset('home/css/main.css') }}" rel="stylesheet">
|
|
<link rel="shortcut icon" href="{{ asset('home/img/favicon_1.ico') }}" type="image/x-icon">
|
|
|
|
<style>
|
|
@keyframes animate-circle {
|
|
from { transform: scale(0); opacity: 1; }
|
|
to { transform: scale(1); opacity: 0; }
|
|
}
|
|
|
|
#preloader {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 999;
|
|
background: linear-gradient(to right, #241F1F 0%, #241F1F 32%, #4A4746 100%);
|
|
}
|
|
|
|
.loader {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
height: 10rem;
|
|
width: 10rem;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.loader > .circle {
|
|
position: absolute;
|
|
height: inherit;
|
|
width: inherit;
|
|
background: #B66449;
|
|
animation: animate-circle 2s cubic-bezier(.9, .24, .62, .79) infinite;
|
|
}
|
|
|
|
.loader > .circle:nth-of-type(2) { animation-delay: calc(2s / -3); }
|
|
.loader > .circle:nth-of-type(3) { animation-delay: calc(2s / -6); }
|
|
</style>
|