-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
93 lines (83 loc) · 1.57 KB
/
App.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
.mainContainer {
display: flex;
justify-content: center;
width: 100%;
margin-top: 64px;
}
.dataContainer {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 600px;
}
.header {
text-align: center;
font-size: 32px;
font-weight: 600;
}
.bio {
text-align: center;
color: gray;
margin-top: 16px;
}
.button-wrapper {
position: relative;
}
.waveButton {
position: relative;
cursor: pointer;
font-weight: 700;
margin-top: 16px;
padding: 8px;
border: 0;
width: 100%;
border-radius: 5px;
color: rebeccapurple;
}
.waver-hand {
position: absolute;
right: 25%;
top: 43px;
margin: auto;
width: 100px;
height: 30px;
animation: spin 2s linear infinite;
color: red;
}
.loader {
border: 6px solid #f3f3f3; /* Light grey */
border-top: 6px solid #3498db; /* Blue */
border-radius: 50%;
margin: auto;
width: 30px;
height: 30px;
animation: load 2s linear infinite;
}
.form {
margin: auto;
padding-left: 10px;
width: 40%;
height: 30px;
border: 1px;
border-radius: 10px;
margin-top: 10px;
}
.card {
border: 1px;
color: white;
border-radius: 0.5rem;
box-shadow: 2px 5px rgb(22, 20, 21);
background-color: rgba(17, 24, 39);
}
@keyframes spin {
0% { transform: rotate(40deg); }
20% { transform: rotate(42deg); }
40% { transform: rotate(44deg); }
60% { transform: rotate(46deg); }
80% { transform: rotate(48deg); }
100% { transform: rotate(50deg); }
}
@keyframes load {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}