forked from Moorad/youtube-video-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (60 loc) · 934 Bytes
/
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
* {
text-align: center;
}
body {
display: grid;
grid-template-columns: auto;
}
.heading {
font-family: Arial;
margin-top: 40vh;
}
.URL-input,
.convert-button {
font-size: 1.3em;
padding: 5px 10px;
}
.URL-input {
margin: auto;
border-radius: 4px 0px 0px 4px;
width: 30em;
text-align: left;
border: 2px solid #eeeeee;
background: #eeeeee;
outline: none;
}
.URL-input:focus {
border: 2px solid #0485ff;
}
.convert-button {
margin: 2% auto;
border: 2px solid #0485ff;
background: #0485ff;
color: white;
transition: 0.15s;
}
.convert-button:hover {
background: #016acc;
border-color: #016acc;
}
@media only screen and (max-width: 600px) {
body {
display: grid;
grid-template-columns: auto;
justify-content: center;
}
.URL-input {
margin: auto;
width: 100%;
}
.convert-button {
margin: 7% auto;
width: 100%;
}
}
.opt {
width: 30vw;
margin: 2% auto;
padding: 4px;
border-radius: 7%;
}