-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (74 loc) · 1.25 KB
/
style.css
File metadata and controls
90 lines (74 loc) · 1.25 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
html,
body {
height: 100%;
background-color: silver;
}
html {
box-sizing: border-box;
}
.header {
padding: 5px 10px;
background-color: navy;
border: solid 6px black;
}
.title {
display: flex;
justify-content: center;
color: white;
text-transform: capitalize;
font-family: Impact;
}
.container {
padding: 5px 10px;
background: silver;
}
.search {
display: flex;
justify-content: center;
padding: 2px 2px 2px 10px;
background: navy;
margin: auto;
font-size: 14px;
}
.search__label {
align-self: center;
}
.search__input {
justify-content: center;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.search__btn {
text-transform: uppercase;
background: lightblue;
}
.search,
.search__input,
.btn {
transition: 0.5s background-color, 0.5s color;
padding: 5px 10px;
border: none;
font: inherit;
border: solid 6px black;
}
.movie__list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.movie {
background-color: navy;
color:white;
width: 360px;
padding: 10px;
text-align: center;
border: solid 6px black;
margin-top: 10px;
margin-bottom: 10px'
}
.movie__details {
position: relative;
background-color: white;
color:black;
border: solid 6px black;
}