-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
65 lines (60 loc) · 941 Bytes
/
index.css
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
.nav-colored{
background: #8B8BDA;
opacity: 0.30;
}
.nav-transparent{
background: rgb(7, 34, 61);
}
.container{
width: 1000px;
overflow: hidden;
}
.container .text{
position: relative;
color: #4070F4;
font-size: 30px;
font-weight: 600;
}
.container .text.first-text{
color: #FFF;
}
.navbarcolor{
cursor: pointer;
}
.Routingpage{
cursor: pointer;
}
.loader{
z-index: 1000;
position:fixed;
top:0;
left: 0;
width:100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color:black;
transition: opacity 2s ,visibility 2s;
}
.loader-hidden{
opacity:0;
visibility: hidden;
}
.loader::after{
content:"";
width:75px;
height:75px;
border: 10px solid #dddddd;
border-top-color: #45b8d2;
border-radius: 50%;
animation: loading 2s ease infinite;
}
@keyframes loading{
from{
transform: rotate(0 turn);
}
to{
transform: rotate(1turn);
}
}