Skip to content

Commit b09bbb2

Browse files
fix box
1 parent 94c2869 commit b09bbb2

File tree

1 file changed

+128
-0
lines changed

1 file changed

+128
-0
lines changed

style.css

+128
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,131 @@ button:hover {
122122
}
123123

124124

125+
/*make site responsive for mobile u 600px*/
126+
127+
128+
@media screen and (max-width: 600px) {
129+
body {
130+
131+
132+
body{
133+
background-color: #121212;
134+
color: white;
135+
display: flex;
136+
flex-direction: column;
137+
align-items: center;
138+
justify-content: center;
139+
font-family: 'Open sans';
140+
}
141+
142+
.title{
143+
display: flex;
144+
flex-direction: row;
145+
}
146+
147+
.container{
148+
display: flex;
149+
flex-direction: column;
150+
align-items: center;
151+
justify-content: center;
152+
height: 60%;
153+
width: 60%;
154+
background-color: #1F1B24;
155+
border-radius: 4vw;
156+
padding: 4vw;
157+
margin: 8px;
158+
}
159+
160+
#link{
161+
background-color: #211b24;
162+
border: 1px solid gray;
163+
border-radius: 8px;
164+
color: white;
165+
padding: 8vw;
166+
margin: 8px;
167+
width: 60%;
168+
text-align: center;
169+
font-size: 4vw;
170+
}
171+
172+
#qualityselector{
173+
display: none;
174+
}
175+
176+
#download-btn{
177+
background-color: #211b24;
178+
border-radius: 8px;
179+
color: white;
180+
padding: 8vw;
181+
margin: 8px;
182+
width: 60%;
183+
text-align: center;
184+
font-size: 4vw;
185+
}
186+
187+
#error-message{
188+
background-color: #f54242;
189+
border-radius: 8px;
190+
color: black;
191+
padding: 3vw;
192+
margin: 8px;
193+
width: 60%;
194+
text-align: center;
195+
font-size: 4vw;
196+
}
197+
198+
input[type="text"] {
199+
width: 80%;
200+
padding: 2vw;
201+
margin-bottom: 10px;
202+
border: 1px solid #ccc;
203+
border-radius: 4px;
204+
}
205+
206+
button {
207+
padding: 10px 20px;
208+
background-color: #6c5ce7;
209+
color: white;
210+
border: none;
211+
border-radius: 4px;
212+
cursor: pointer;
213+
}
214+
215+
button:hover {
216+
background-color: #a296fc;
217+
}
218+
219+
#message {
220+
margin-top: 10px;
221+
}
222+
223+
#progress {
224+
width: 80%;
225+
margin: 20px auto;
226+
padding: 5vw;
227+
background-color: #f3f3f3;
228+
border: 1px solid #ccc;
229+
border-radius: 5px;
230+
position: relative;
231+
height: 20px;
232+
}
233+
234+
#progress-bar {
235+
height: 100%;
236+
width: 0;
237+
background-color: #00ff26;
238+
border-radius: 5px;
239+
transition: width 0.2s;
240+
}
241+
242+
243+
244+
@font-face {
245+
font-family: 'Open sans';
246+
src: url('fonts/Open\ sans/OpenSans-Regular.ttf');
247+
}
248+
249+
}
250+
}
251+
252+

0 commit comments

Comments
 (0)