-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
188 lines (171 loc) · 3.71 KB
/
style.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main-container {
width: auto;
height: 100vh;
background-color: #3a0158;
display: flex;
justify-content: center;
align-items: center;
}
.first-container {
background: linear-gradient(115deg, #d400ffb0 0%, #6e00a5ab 100%);
width: 640px;
height: 500px;
border: none;
border-radius: 50% 20% / 10% 40%;
filter: blur(5px);
-webkit-filter: blur(5px);
box-shadow: 12px 25px 1px 1px rgba(255, 255, 255, 0.438);
animation: easeInOut 2s infinite;
-webkit-animation: easeInOut 2s infinite;
position: absolute;
}
@keyframes easeInOut {
0% {
transform: translateX(0);
animation-timing-function: ease-out;
}
50% {
transform: translateY(5px);
}
100% {
transform: translateY(0);
animation-timing-function: ease-out;
}
}
.second-container {
position: relative;
flex-direction: column;
margin-top: 9px;
display: flex;
justify-content: center;
align-items: center;
width: 640px;
height: 500px;
flex-flow: column;
gap: 40px;
animation: easeInOut 2s infinite;
-webkit-animation: easeInOut 2s infinite;
background-color: rgba(240, 248, 255, 0);
border-radius: 50% 20% / 10% 40%;
}
@keyframes easeInOut {
0% {
transform: translateX(0);
animation-timing-function: ease-out;
}
50% {
transform: translateY(5px);
}
100% {
transform: translateY(0);
animation-timing-function: ease-out;
}
}
.second-container h3 {
background-color: rgba(116, 115, 116, 0);
color: whitesmoke;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
border-radius: 80% 20% / 20% 50%;
font-size: 30px;
-webkit-border-radius: 80% 20% / 20% 50%;
-moz-border-radius: 80% 20% / 20% 50%;
-ms-border-radius: 80% 20% / 20% 50%;
-o-border-radius: 80% 20% / 20% 50%;
padding: 7px;
padding-left: 23px;
width: 500px;
height: 90px;
box-shadow: 0 1.5px 3px 1px black;
margin-bottom: 20px;
text-align: center;
padding-top: 21px;
/* backdrop-filter: blur(3px); */
}
.second-container input {
background-color: rgba(255, 255, 255, 0);
color: rgb(255, 255, 255);
padding-left: 2px;
width: 300px;
height: 60px;
border: none;
border-radius: 20px;
font-size: 20px;
appearance: none;
box-shadow: 0 1.5px 3px 1px black;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
outline: none;
text-align: center;
}
.second-container button {
background-color: #ddbdee00;
color: white;
width: 150px;
height: 35px;
border: none;
cursor: pointer;
appearance: none;
border-radius: 50px;
font-size: 20px;
font-style: inherit;
box-shadow: 0 1px 1.2px 1px #000000;
}
.second-container button:hover {
background-color: #210f215a;
}
.second-container .res {
background: linear-gradient(115deg, #6e00a56a 0%, #d400ff4b 100%);
box-shadow: 0 1.5px 3px 1px black;
padding: 10px;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
font-weight: 300;
font-size: 18px;
width: 300px;
height: auto;
text-align: center;
text-decoration: none;
/* padding-top: 13px !important; */
border-radius: 20px;
justify-content: center;
}
@media (max-width: 697px) {
.first-container {
display: flex;
flex-wrap: wrap;
width: 320px;
height: 420px;
}
.second-container {
width: 500px;
height: 400px;
gap: 35;
}
.second-container h3 {
padding-top: 26px;
margin-top: 20px;
margin-bottom: 0px;
width: 320px;
font-size: 20px;
height: 80px;
}
.second-container input {
width: 200px;
height: 50px;
}
.second-container button {
width: 100px;
height: 30px;
}
.second-container .res {
padding-top: 10px;
text-align: center;
}
}