-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
171 lines (146 loc) · 2.69 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #22254b;
font-family: "Poppins", sans-serif;
margin: 0;
}
header {
background-color: #373b69;
display: flex;
justify-content: flex-end;
padding: 1rem;
}
.search {
background-color: transparent;
border: 2px solid #22254b;
border-radius: 50px;
color: #fff;
font-family: inherit;
font-size: 1rem;
padding: 0.5rem 1rem;
}
.search::placeholder {
color: #7378c5;
}
.search:focus {
background-color: #22254b;
outline: none;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.movie {
background-color: #373b69;
border-radius: 3px;
box-shadow: 0 4px 5px rgba(247, 247, 247, 0.2);
overflow: hidden;
position: relative;
margin: 1rem;
}
.movie:hover img {
transform: rotate(10deg) scale(1.2);
}
@media only screen and (min-width: 600px) {
.movie {
width: 46%;
}
}
@media only screen and (min-width: 768px) {
.movie {
width: 49%;
}
}
@media only screen and (min-width: 992px) {
.movie {
width: 29%;
}
}
.movie img {
width: 100%;
transition: all 1s ease-in-out;
}
.movie-info {
color: #eee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem 1rem;
letter-spacing: 0.5px;
}
.movie-info h3 {
margin: 0;
}
.movie-info span {
background-color: #22254b;
border-radius: 3px;
font-weight: bold;
padding: 0.25rem 0.5rem;
min-width: 40px;
text-align: center;
}
.movie-info span.green {
color: rgb(39, 189, 39);
}
.movie-info span.orange {
color: orange;
}
.movie-info span.red {
color: rgb(189, 42, 42);
}
.overview {
background-color: #fff;
padding: 2rem 20px;
position: absolute;
max-height: 100%;
overflow: auto;
left: 0;
bottom: 0;
right: 0;
transform: translateY(101%);
transition: all 0.6s ease-in;
}
.overview h3 {
margin-top: 0;
}
.movie:hover .overview {
transform: translateY(0);
}
.open-movie {
position: absolute;
display: block;
text-decoration: none;
text-transform: capitalize;
top: 0%;
width: 55px;
right: 10px;
font-size: 20px;
border: 2px solid rgb(181, 181, 181);
padding: 2px 15px;
border-radius: 10px;
margin-top: 20px;
text-align: center;
background-color: #22254b;
color: #eee;
}
/* google_translate */
#google_translate_element {
position: fixed;
top: 10px;
left: 10px;
background-color: #fff;
padding: 5px 10px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
font-size: 20px !important;
}
#google_translate_element .goog-te-combo {
font-size: 18px;
}