-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
69 lines (62 loc) · 1.04 KB
/
main.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
body {
font-family: "Roboto", sans-serif;
margin: 0;
padding: 20px;
background-color: #0e111b;
color: #fff;
}
h1 {
text-align: center;
background-color: #1c212e;
}
#search-form {
padding: 20px;
background-color: #f5f5f5;
text-align: center;
}
#search-form input {
height: 50px;
padding: 0 20px;
border-radius: 4px;
border: none;
outline: none;
font-size: 14px;
color: #fff;
background-color: #1c212e;
}
#search-form button {
padding: 10px 20px;
font-size: 16px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
#search-form button:hover {
background-color: #f86a05;
}
#movie {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.movie-card {
width: 300px;
margin: 10px;
padding: 10px;
background-color: #1c212e;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
cursor: pointer;
text-align: center;
}
.movie-img img {
width: 100%;
height: auto;
}
.movie-card p {
margin: 5px 0;
line-height: 1.5;
}