-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-app.css
48 lines (41 loc) · 913 Bytes
/
web-app.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
/* Basic styles for the form */
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
/* Styles for the input field */
input[type="text"] {
width: 100%;
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
}
/* Styles for the submit button */
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Styles for the submit button when hovered */
input[type="submit"]:hover {
background-color: #45a049;
}
#link-list{
background-color: #eaebea;
width: 99vw;
height: 500px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 20px;
}
#video-link{
height: 20px;
width: 350px;
}