-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
195 lines (192 loc) · 3.26 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
189
190
191
192
193
194
195
* {
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
font-family: "Poppins";
outline: none;
}
body {
background-color: #b3cde0;
}
.container {
width: 80%;
height: 100vh;
margin: 0 auto;
}
.form {
width: 100%;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
}
.form input {
width: 500px;
height: 50px;
font-weight: 500;
padding-left: 20px;
border: 1px solid #54b2a9;
border-radius: 4px;
margin: 5px;
transition: 0.3s ease-in-out;
}
.form input:focus {
border: 1px solid #fff;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.form button {
height: 50px;
width: 150px;
border-radius: 4px;
border: 1px solid #54b2a9;
background: #4d648d;
font-weight: 600;
color: white;
transition: 0.3s ease-in-out;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.form .download__video:hover {
cursor: pointer;
background-color: #344869;
}
.response {
width: 100%;
padding: 50px 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.response .item {
padding: 5px 15px;
width: 60%;
height: 40px;
margin: 10px 0;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 4px;
background-color: #fff;
transition: 0.4s ease-in-out;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.response .item:hover {
transform: scale(1.01);
cursor: pointer;
box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.item p {
font-weight: 700;
font-size: 18px;
color: #4d648d;
}
.item a {
text-decoration: none;
color: #54b2a9;
font-weight: 500;
font-family: monospace;
transition: 0.4s ease-in-out;
font-size: 16px;
}
.response .item:hover a {
color: #344869;
}
.response ol {
margin: 10px auto;
width: 360px;
display: flex;
align-items: center;
flex-direction: column;
}
.response ol li {
font-weight: 600;
color: #344869;
font-size: 12px;
}
footer {
width: 100%;
height: 40px;
background-color: black;
position: absolute;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
}
footer p {
color: #b3cde0;
font-size: 12px;
}
footer p a {
color: #b3cde0;
}
@media (max-width: 700px) {
.form {
flex-direction: column;
}
.form button {
width: 500px;
}
.item {
display: flex;
align-items: center;
justify-content: center;
}
.item p {
display: none;
}
.item a {
font-size: 12px;
}
.response ol {
width: 100%;
}
.response ol li {
text-align: center;
margin: 3px 0;
text-align: center;
}
.response h2 {
font-size: 16px;
}
.response .item {
width: 95%;
}
}
@media (max-width: 550px) {
.response ol {
width: 90%;
display: inline-block;
}
.response ol li {
text-align: start;
font-size: 10px;
}
.container {
width: 90%;
}
.form button {
width: 100%;
}
.form input {
width: 100%;
}
.response .item {
width: 100%;
}
}
@media (max-width: 300px){
.response h2{
font-size: 12px;
text-align: center;
}
footer p{
font-size: 8px;
}
}