-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (39 loc) · 772 Bytes
/
style.css
File metadata and controls
43 lines (39 loc) · 772 Bytes
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
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(90deg, #080C59,#6d00db, #F2507B);
}
.card {
position: relative;
width: 350px;
height: 250px;
background: #fff;
border-radius: 20px;
box-shadow: 0 35px 80px rgba(0,0,0,0.15);
transition: 0.5s;
}
.card h1 {
color: #080C59;
text-align: center;
}
.loader {
position: absolute;
left: 25%;
top: 30%;
border: 16px solid #d9d9d9;
border-top: 16px solid #6d00db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}