-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (101 loc) · 2.12 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
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
background-color: #000;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
position: relative;
padding-bottom: 100px;
padding-top: 20px;
}
ul {
height: 25px;
width: 95%; /* Largura */
display: flex;
justify-content: space-between;
list-style-type: none;
position: fixed;
}
.img-topo {
height: 25px; /* Altura */
}
video {
width: 100vw; /* Largura */
min-height: 80vh; /* Altura */
}
.capa {
position: absolute;
bottom: 20%; /* TOP - CIMA, BOTTOM - BAIXO, LEFT - ESQUERDA, RIGHT- DIREITA */
left: 5%;
width: 35%;
z-index: 3;
}
.capa-titulo {
color: white;
font-size: 80px; /* Tamanho da fonte */
margin-bottom: 5px;
font-weight: bold; /* Grossura da fonte */
}
.capa-descricao {
color: white;
font-size: 20px;
margin-bottom: 20px;
}
.link-assistir {
background-color: white;
color: black;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer; /* Mãosinha */
}
.link-info {
color: black;
background-color: rgba(255, 255, 255, 0.35);
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
.imagem-carrossel {
height: 150px;
}
#carouselExampleControls {
background-color: transparent;
position: absolute;
bottom: 10px;
left: 50px;
}
.titulo-carrossel {
color: white;
font-size: 30px;
margin-bottom: 10px;
}
.botao-som {
border: none;
border-radius: 5px;
cursor: pointer;
z-index: 4;
position: absolute;
top: 100px;
right: 20px;
}
.modal {
display: none; /* Mostrar NADA */
position: fixed;
z-index: 5;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
}
.modal-conteudo {
background-color: #181818;
margin: 30px auto;
padding: 20px;
width: 60%;
color: white;
}
/*
Classe = .
ID = #
*/