-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetflix.css
More file actions
106 lines (97 loc) · 1.85 KB
/
netflix.css
File metadata and controls
106 lines (97 loc) · 1.85 KB
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
html{
scrollbar-width: 0;
}
::-webkit-scrollbar{
display: none;
}
*{
padding: 0;
margin: 0;
}
body{
max-width: 100vw;
}
.header{
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(bgImg.jpg);
background-size:cover;
background-repeat: no-repeat;
/* width: 100vw;height: 100vh; */
height: 100vh;
padding: 18px;
}
.nav{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.Button{
background-color: red;
color:white;
font-size: 15px;
border: 0;
outline: 0;
width: 70px;
height: 25px;
cursor: pointer;
}
.inside{
position: absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
margin-top: 100px;
width:100%;
}
.form{
background-color: rgba(19, 18, 18, 0.107);
color:white;
height: 30px;
width: 250px;
font-size: 25px;
border: 1px solid white;
}
.buton{
height: 35px;
width:150px;
background-color: red;
color: white;
font-size: 18px;
}
.out{
display: flex;
flex-direction: row;
color: white;
justify-content: space-evenly;
align-items: center;
/* width:97vw;*/height:250px;
padding: 40px;
flex-wrap: nowrap;
background-color: black;
border-top: 8px solid rgba(255, 255, 255, 0.078);
}
.im{
width:330px;
height:200px;
}
.faq{
display: flex;
flex-direction: row;
color: white;
border-top: 8px solid rgba(255, 255, 255, 0.078);
justify-content: space-around;
/* width:97vw;*/height:300px;
padding: 40px;
flex-wrap: nowrap;
background-color: black;
}
a{
color:white;
text-decoration: none;
font-size: 22px;
}
li{padding:25px;}
.paddin{
padding:7px;
}