-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (85 loc) · 1.55 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (85 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@media (max-width: 768px) {
.bg-blue-900 {
z-index: 999;
}
body {
padding-top: 0px;
}
.new{
max-width: 186.488px;
}
}
/* code for logo animation */
.logo-container {
position: relative;
display: flex;
align-items: center;
}
.logo-icon {
opacity: 0;
animation: slideIn 1s ease-in-out forwards;
margin-right: 20px; /* Add space to the right side of the icon (adjust the value as needed) */
}
.text-container {
display: flex;
margin-left: 10px;
}
.logo-text {
opacity: 0;
animation: fadeIn 0.5s ease-in-out forwards;
animation-delay: 1s; /* Delay the animation by 1 second */
}
@keyframes slideIn {
0% {
transform: translateX(100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*Preloader animation*/
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
z-index: 999;
}
.preloader-logo {
width: 200px; /* Adjust the size to your preference */
height: 200px;
border-radius: 50%;
animation: pulse 3s linear infinite;
}
@-webkit-keyframes "pulse" {
0% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
50% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.site-wrap {
display: none; /* Hide the main site initially */
}