-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (65 loc) · 1.09 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
font-family: "Poppins", sans-serif;
width: 100%;
height: 100%;
}
.container {
width: 100%;
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.title-container {
padding: 10px;
}
.title-container h3 {
font-size: 30px;
}
.form-container {
padding: 10px;
border: 2px solid rgb(201, 201, 252);
border-radius: 5px;
background-color: lightblue;
}
.form-container form {
display: flex;
flex-direction: column;
align-items: center;
}
.form-container input {
margin: 10px;
border-radius: 5px;
outline: none;
border: 1px solid lightgray;
}
.form-container label {
border-radius: 5px;
}
#video-url-input {
width: 80%;
height: 30px;
font-size: 20px;
font-family: "Poppins", sans-serif;
}
#sub-but {
padding: 10px;
font-family: "Poppins", sans-serif;
}
.status-container {
border: 2px solid rgb(201, 201, 252);
border-radius: 5px;
background-color: lightblue;
margin: 10px;
padding: 10px;
}
.status-container h5 {
font-size: 20px;
}