-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (79 loc) · 1.69 KB
/
style.css
File metadata and controls
89 lines (79 loc) · 1.69 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
:root {
--background: #fff;
--liquid: #242424;
--font-color: #fff;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--background);
min-width: 300px;
min-height: 400px;
}
label, h3 {
color: var(--font-color);
font-family: 'Lucida Sans', 'Lucida Sans Regular',
'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.label-hidden{
font-size: small;
opacity: 0;
text-align: start;
margin-bottom: 0px;
transition: 500ms;
}
.inputStyle{
height: 32px;
border-radius: 30px;
margin-bottom: 20px;
border: none;
padding: 10px;
width: 250px;
}
.btLG{
background-color: var(--background);
color: var(--liquid);
text-align: center;
height: 90px;
font-weight: bold;
border: none;
margin-top: 20px;
border-radius: 50%;
width: 90px;
margin-bottom: 20px;
transition: transform 500ms;
}
.btLG:hover{
cursor: pointer;
transform: scale(1.1);
}
.wrapper{
position: relative;
overflow: hidden;
width: 300px;
height: 400px;
border: 5px solid var(--liquid);
background-color: var(--liquid);
padding: 20px;
text-align: center;
}
.wrapper::after {
content: "";
position: absolute;
background-color: var(--background);
height: 200%;
width: 200%;
bottom: -50%;
left: -50%;
border-radius: 37%;
animation: spin 6s infinite cubic-bezier(0, 0.3, 0.58, 1);
}
@keyframes spin {
from {
transform: translateY(0) rotate(0deg);
}
to {
transform: translateY(-80%) rotate(360deg);
}
}