-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
68 lines (63 loc) · 1.24 KB
/
index.css
File metadata and controls
68 lines (63 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
scroll-behavior: smooth;
}
body {
margin: 0;
overflow: overlay;
font-family: 'Rubik', sans-serif;
}
html {
scroll-behavior: smooth;
}
::-webkit-scrollbar {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #0000ff;
border-radius: 10px;
}
.loader-container {
background-color: white;
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 99;
opacity: 1;
transition: all 1000ms;
}
.loader {
display: flex;
justify-content: center;
align-items: center;
height: 50vh;
}
.rotatingLoader {
font-family: "Tiro Devanagari Marathi", serif;
/* width: 5em; */
/* height: 5em; */
font-size: 2rem;
color: #0000ff;
border-radius: 50%;
/* border-top: 5px solid blue; */
/* animation: round 700ms linear infinite; */
transition: all 200ms;
font-style: italic;
opacity: 0;
}
.transformtranslate {
transform: translateY(-120vh);
}
@keyframes round {
from {
rotate: 0deg;
}
to {
rotate: 360deg;
}
}