-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (62 loc) · 1.25 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
body{
margin: 50px;
background-color: rgba(246, 239, 239, 0.832);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.search{
width: 700px;
margin: 30px auto;
display: flex;
}
.search-field{
width: 650px;
padding: 16px;
border:2px solid red;
background-color: white#474747;
font-size: 18px;
color:black;
border-top-left-radius: 12px;
border-bottom-left-radius: 12px;
}
.search-field:focus{
outline: none;
}
.search-btn{
background-color: red;
color: white;
font-size: 18px;
padding: 16px 30px;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
border: none;
}
.movie-container{
width: 700px;
margin: 30px auto;
display: flex;
}
.poster{
width: 260px;
border-radius: 12px;
}
.details{
color: rgba(14, 13, 13, 0.931);
}
.details p{
color: rgb(6, 6, 6);
font-weight: bold;
width: 440px;
font-size: 17px;
}
.value{
color: rgb(8, 8, 8);
font-weight: normal;
}
.ratings{
background-color: rgb(249, 216, 4);
padding: 3px 12px;
border-radius: 4px;
font-size: 14px;
color: black;
display: inline-block;
}