-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
108 lines (83 loc) · 1.61 KB
/
main.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
:root{
--vermelho:#E50914;
--preta:#141414;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* elementos bbase*/
body{
background: var(--preta);
font-family: 'Arial', Times, serif;
color: white;
}
header .container{
display: flex;
align-items: center;
justify-content: space-between;
}
header .logo{
color: var(--vermelho);
font-family: 'Arial Black';
font-size: 40px;
margin-left: 0px;
margin-right: 175px;
}
header nav a{
text-decoration: none;
color: rgb(233, 230, 230);
margin-right: 10px ;
}
header nav a:hover{
color: rgb(255, 255, 255);
}
/*Filmes principal*/
.filme-principal{
font-size: 16px;
background: linear-gradient(rgb(0,0,0,.50),rgb(0,0,0,.50)100%), url(img/wallpaper_docto_who.jpg);
height: 500px;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start ;
}
.filme-principal .sinopse{
margin-bottom: 40px;
margin-top: 10px;
}
.titulo{
font-size: 40px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.botao {
background-color: rgb(0,0,0,.50);
border: none;
color: white;
padding: 15px 30px;
margin-right: 15px;
font-size: 12px;
cursor: pointer;
transition:.3s ease all;
}
.botao:hover{
background-color: white;
color: #141414;
}
.botao i{
margin: 8px;
}
.container{
margin-left: 30px;
margin-right: 30px;
}
.filme-principal .container{
width: 38%;
}
.box-filme {
height: 100%;
width: 100%;
display: block;
}