source: resources/assets/sass/components/preloader.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 653 bytes
Line 
1.preloader {
2 position: fixed;
3 right: 0;
4 left: 0;
5 top: 0;
6 bottom: 0;
7 z-index: 1001;
8 background: white;
9 display: flex;
10 align-items: center;
11 justify-content: center;
12 flex-direction: column;
13
14 .preloader-icon {
15 border: 5px solid #eeeeee;
16 border-radius: 50%;
17 border-top: 5px solid #3498db;
18 width: 50px;
19 height: 50px;
20 animation: spin .5s linear infinite;
21 }
22
23 /* Safari */
24 @-webkit-keyframes spin {
25 0% { -webkit-transform: rotate(0deg); }
26 100% { -webkit-transform: rotate(360deg); }
27 }
28
29 @keyframes spin {
30 0% { transform: rotate(0deg); }
31 100% { transform: rotate(360deg); }
32 }
33
34 svg {
35 path {
36 fill: $color-primary;
37 }
38 }
39}
Note: See TracBrowser for help on using the repository browser.