-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
75 lines (74 loc) · 1.35 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
*{
box-sizing: border-box;
}
body {
background-color: #22254b;
color: white;
display: flex;
flex-direction: column;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin: 0;
}
.root{
display: flex;
flex-direction: column;
}
header {
background-color: #373b69 ;
padding: 1 rem;
display: flex;
justify-content: flex-end;
}
.movie-container {
display: flex;
flex-wrap: wrap;
}
.search {
background-color: #22254b;
border: 2px solid wheat;
border-radius: 50px;
color :white;
font-family: inherit;
font-size: 1.2rem;
padding: 0.5rem 1.5rem;
}
.movie{
background-color: #373b69 ;
border-radius: 3px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
overflow: hidden;
position: relative;
margin: 1rem;
width: 300px;
}
.movie img {
max-width: 100%;
}
.movie-info {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
}
.movie-info h3 {
margin: 0;
}
.movie-over {
background-color: antiquewhite;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1) ;
color: #22254b;
position: absolute;
bottom: 0;
left: 0;
right: 0;
overflow: auto;
max-height: 100%;
transform: translateY(102%);
transition: transform 0.3s ease-in-out;
}
.movie:hover .movie-over
{
transform: translate(0%);
}