-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTelaNetflixVHCBStyle.css
154 lines (146 loc) · 3.14 KB
/
TelaNetflixVHCBStyle.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*Definido os roots*/
:root {
--logo-color: #e50914;
--body-color: #141414;
--princ-font: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/*Alinhamento da Página*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*Elementos Base do Body*/
body {
background-color: var(--body-color);
font-family: var(--princ-font);
font-weight: bold;
color: white;
}
/*CONF dos Container*/
header .container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin-left: 20px;
}
/*CONF da Logo*/
header .logo {
margin-left: 8px;
padding: 0px 15px;
color: var(--logo-color);
font-family: var(--princ-font);
font-size: 40px;
}
/*Alinhamento do NAV A*/
header nav a {
text-decoration: none;
color: #aaa;
margin-right: 10px;
}
/*Ao passar o mouse nos Menus, um transição de cor*/
header nav a:hover {
color: #fff;
transition: 0.3s;
}
/*CONF do Movie 1*/
.movie-one {
font-size: 15px;
/*Linear Gradiente, estamos inserindo uma imagem e por cima uma peliculatransparente*/
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 100%),
url('/Digital_Innovation_One_PROJETO2/TelaNetflix_VHBC/img/the-serie-journeys-pokemon.jpg');
height: 500px;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
/*CONF da Sinospe do Movie 1*/
.movie-one .sinopse {
margin-top: 10px;
margin-bottom: 45px;
}
/*CONF no Titulo do Movie 1*/
.movie-one .title {
margin-top: 14px;
font-size: 40px;
}
/*CONF dos Botões*/
.bttons .bt-play,
.bt-info {
border: none;
border-radius: 8px 8px;
padding: 14px 30px;
/*Afastando os botões*/
margin-right: 10px;
font-size: 13px;
/*Deixa a fonte Negrito*/
font-weight: bold;
/*Muda o ponteiro do Mouse*/
cursor: pointer;
}
/*Alterando o BACK e Color do Botão Play*/
.bt-play {
background: rgba(255, 255, 255);
color: black;
}
/*Alterando o BACK e Color do Botão Info*/
.bt-info {
background: rgba(130, 130, 130, 0.8);
color: white;
}
/*Ao passar o mouse no BotãoPlay, um transição de cor*/
.bt-play:hover {
background: rgba(255, 255, 255, 0.8);
transition: 0.3s ease all;
}
/*Ao passar o mouse no BotãoInfo, um transição de cor*/
.bt-info:hover {
background: rgba(130, 130, 130, 0.4);
transition: 0.25s;
}
/*Afastando um pouco os icons*/
*.bttons i {
margin-right: 8px;
}
/*Afastando o conteúdo do Container*/
.container {
margin-left: 30px;
}
.movie-one .container {
width: 70%;
}
/*Definindo tamanho do BOX Movie Carroel*/
.box-movie {
width: 100%;
height: 100%;
display: block;
margin-top: 0.5px;
/*Dando efeito de Zoom na IMG no Box*/
-webkit-transition: -webkit-transform 0.5s ease;
transition: transform 0.6s ease;
}
/*Realizando animação do BOX Movie*/
.box-movie:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/**RESPONDIVE**/
@media screen and (max-width: 700px) {
header .container {
display: flex;
flex-direction: column;
}
.bttons .bt-play,
.bt-info {
margin-top: 4px;
width: 201px;
}
}
@media screen and (min-width: 1000px) {
.sinopse {
width: 50%;
}
}