-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
129 lines (112 loc) · 1.95 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin: 0px;
box-sizing: border-box;
}
.searchBar{
background-color: rgb(58, 65, 112);
height: 100px;
display: grid;
grid-template-columns: 1fr;
align-content: center;
justify-content: center;
}
.searchBar > li{
grid-column: 1;
text-align: center;
list-style: none;
width:25%;
}
.searchBar h3{
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 40px;
letter-spacing: 2px;
}
input{
border-radius: 20px;
padding: 5px;
font-weight: bold;
}
.list{
display: grid;
grid-template-columns: repeat(4, 1fr);
justify-content: space-evenly;
}
.photo{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 15px;
}
.photo img{
width: 300px;
height: 398px;
}
.footer{
height: 150px;
margin-top: 50px;
background-color: black;
}
.paginList{
list-style: none;
}
.list-item-pagination{
padding: 10px;
background-color: blanchedalmond;
}
.list-item-pagination:hover{
background-color: blue;
}
.footer p{
color: white;
}
.list-item{
font-weight: bold;
}
.content{
margin-top: 20px;
}
.main-content{
display: flex;
flex-direction: column;
width: 100%;
}
.movie-layout{
margin-top: 70px;
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-gap: 20px;
}
.image{
grid-column: 3 / 5;
}
.description{
display: flex;
flex-direction: column;
grid-column: 6 / 9;
}
.description h3{
align-self: center;
}
.details-description{
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 5px;
}
.movie-layout-loading{
display: flex;
justify-content: center;
flex-direction: row;
margin-top: 70px;
}
.main-layout{
display: grid;
justify-items: center;
align-items: center;
grid-template-rows: 1fr 10fr;
}
form{
display: flex;
flex-direction: column;
}