-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (78 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
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
p{
margin-bottom: 0;
}
li{
max-width: 350px;
height: 450px;
margin: auto;
}
.flag-icon-unknown{
background-image: url("img/unknown.svg");
height: 1.5em;
line-height: 1.5em;
}
.fas{
color: #FFB400;
}
#title, .inputstyle, .container-home, .box-details-film{
transition: all .5s ease-out;
}
#title.start{
font-size: 100px;
}
.inputstyle, select{
height: 48px;
padding: 0 10px;
border-radius: 5px;
}
.inputstyle{
border: 0;
width: 120px;
}
.inputstyle:focus{
background-color: black;
color: white;
width: 300px;
}
.container-home{
height: 200px;
display: flex;
flex-direction: column;
justify-content: space-around;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, 0);
}
.container-home.start{
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ajaxcontainer{
margin-top: 200px;
display: none;
}
.box-poster-film{
position: relative;
height: 100%;
width: 100%;
}
.box-details-film{
padding-top: 25%;
width: 100%;
height: 100%;
position: absolute;
top: 0;
background-color: rgba(0, 0, 0, 0.9);
opacity: 0;
}
.flyers{
object-fit: cover;
width: 100%;
height: 100%;
box-shadow: 5px 5px 10px black;
}
.box-poster-film:hover .box-details-film{
opacity: 1;
}