-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (94 loc) · 1.84 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
body{
background-color: white;
padding-top: 65px;
}
#home-page{
background-image: url("https://media.istockphoto.com/photos/pop-corn-and-on-red-armchair-cinema-picture-id1271522601?k=20&m=1271522601&s=170667a&w=0&h=L2a4QSIulE5PyABz4DsIUrBhctk7Wj18quOXmzbVTuM=");
background-repeat: no-repeat;
background-size: cover;
color: rgb(247, 203, 58);
}
#container{
margin-bottom: 9px;
}
.ratingButton{
margin: 9px;
}
#modeButton{
margin: 8px;
}
#movieDiv{
white-space: pre-line;
}
.navbar-brand img{
height:50px;
width:50px;
}
#movie-backdrop {
width: 100%;
}
#home-page{
height: 100vh;
text-align: center;
text-shadow: #1a0c0c 3px;
align-items: center;
}
footer{
bottom: 0;
width: 100%;
background-color: #9ab0bf;
}
#home-page>h1{
font-size: 70px;
padding: 20px;
animation: slide-out 2.5s;
}
#home-page>h3{
font-size:50px;
margin: 40px;
animation: slide-out 3s;
}
#home-page>p{
font-size:30px;
margin: 40px;
animation: slide-out 4s;
white-space: pre-line;
}
@keyframes slide-out {
0% { transform: translateY(300%); }
100% { transform: translateY(0%); }
}
.container {
padding-top: 32px;
}
.movieImage{
width: 100%;
}
.movieDiv{
height: calc(100vh/2);
width: 30%;
border: 1px solid rgba(119, 114, 114, 0.668);
/* box-shadow: 10px 10px 8px #888888; */
margin: 5px;
margin-bottom: 10px;
text-align: center;
background-color: rgba(92, 227, 232, 0.856);
}
.movieDiv:hover {
transform: scaleX(1.3) scaleY(1.3);
}
.actorDiv{
overflow-x: scroll;
display: flex;
}
.actorsDiv{
border: 1px solid rgba(119, 114, 114, 0.668);
box-shadow: 10px 10px 8px #888888;
overflow:hidden ;
}
.actorsDiv:hover{
transform: scaleX(1.3) scaleY(1.3);
}
.allActors{
margin-top:8px;
}