-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
103 lines (82 loc) · 1.56 KB
/
main.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
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
96
97
98
99
100
101
102
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@300&display=swap');
:root{
--blue:#e7ffff;
--light-blue:#46E9EC;
--dark-blue:#143642;
}
*{
padding:0px;
margin:0px;
}
.main-container{
height:100vh;
width:100vw;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Inter', sans-serif;
background-image: linear-gradient(to right, var(--blue),var(--light-blue));
}
.container{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
height:100vh;
}
.ip {
margin-bottom:20px;
}
.location{
margin-bottom: 25px;
}
.btn{
background-color: var(--dark-blue);
color:white;
font-size: 20px;
font-weight: bolder;
width:130px;
height:40px;
border-radius: 25px;
border:2px solid var(--dark-blue);
}
.btn:hover{
opacity:0.8;
cursor: pointer;
}
.text {
color:rgb(202, 6, 186);
}
.other-info{
margin-bottom: 10px;
}
/* Loading */
.loading{
display:flex;
flex-direction: row;
margin-bottom:20px;
}
.loader{
width:9px;
height:35px;
background-color: white;
margin-right:4px;
}
.l1{
animation: animated 1s ease-in-out infinite alternate 1s;
}
.l2{
animation: animated 1s ease-in-out infinite alternate 0.3s;
}
.l3{
animation: animated 1s ease-in-out infinite alternate 0.5s;
}
@keyframes animated{
from{
transform: scale(1.0);
}
to{
transform:scale(1.3);
}
}