-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomePage.css
115 lines (106 loc) · 1.5 KB
/
homePage.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
* {
padding: 0;
margin: 0;
}
body {
height: 100vh;
width: 100%;
color: #989898;
font-family: "netflix-font-regular", sans-serif;
background-color: #141414;
}
.tittle {
position: absolute;
margin-top: 10%;
margin-left: 60%;
}
.banner img {
height: 100vh;
width: 100%;
margin-top: 3%;
}
.tittle img {
height: 30vh;
}
.tittle .label {
height: 20vh;
width: 35vw;
margin-top: 5%;
color: white;
}
button {
height: 6vh;
width: 8vw;
border-radius: 5px;
border: none;
color: black;
font-size: 15px;
font-weight: bold;
}
.logo img {
height: 25px;
width: auto;
z-index: 10;
position: absolute;
margin-top: 1%;
margin-left: 5%;
}
nav {
display: flex;
height: 8vh;
width: 100%;
position: fixed;
background-color: black;
}
.options ul li {
display: inline-flex;
font-size: 12px;
font-weight: bold;
margin-left: 2%;
}
.options ul li:hover {
color: white;
transform: scale(1.2);
}
.options {
width: 50vw;
margin-left: 15%;
margin-top: 1%;
}
.search {
margin-left: 10%;
width: 30vw;
text-align: center;
}
.search ul li {
display: inline-flex;
margin-top: 5%;
font-size: 18px;
margin-left: 5%;
}
/* .genre {
height: 100vh;
width: 100%;
} */
.genre h1 {
margin-left: 5%;
font-size: 20px;
margin-top: 2%;
}
.carousel {
display: flex;
margin-left: 4%;
}
.card {
margin-left: 0.5%;
margin-top: 1%;
transition: 0.4s;
}
.card img {
border-radius: 1px;
height: 20vh;
width: auto;
}
.card:hover {
transform: scale(1.6);
}