This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (117 loc) · 2.4 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
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
/* Cabeçalho da página*/
header {
background: #c0c0c0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
img {
max-width: 100%;
max-height: 100%;
}
iframe {
max-width: 100%;
max-height: 100%;
}
header a {
color: #020202;
text-align: center;
}
#menu_navegacao {
display: flex;
align-content: center;
}
#menu_navegacao a {
text-align: center;
flex-shrink: 1;
flex-grow: 1;
}
#menu_busca {
display: flex;
align-content: center;
text-align: center;
}
/* Barra de pesquisa */
#search-bar {
display: inline;
}
/* Form do botão de pesquisa e da barra de pesquisa */
#menu_busca>form {
display: flex;
flex: 1;
}
main div div h1 {
text-align: center;
}
#section_lancamentos {
margin: 20px;
}
.carousel .carousel-indicators {
position: relative;
}
.carousel .carousel-indicators button {
width: 10px;
height: 10px;
border-radius: 50%;
}
.botoes_carousel .carousel-indicators button.active {
display: inline-block;
background-color: #535353;
}
.botoes_carousel .carousel-indicators button:not(.active) {
display: inline-block;
background-color: #c3c3c3;
}
#section_destaque .dropdown button {
float: right;
}
#section_destaque h1 {
text-align: left;
}
#section_destaque #cards_filmes_destaque .row .col-3 {
margin-bottom: 10px;
}
#section_destaque #cards_filmes_destaque img {
width: 300px;
height: 450px;
}
#section_ultimas_avaliacoes h1 {
text-align: left;
}
#section_ultimas_avaliacoes #cards_ultimas_avaliacoes .card-header {
justify-content: space-between;
}
#section_ultimas_avaliacoes #cards_ultimas_avaliacoes img {
position: relative;
width: 55px;
height: 55px;
border-radius: 50%;
margin: 5px;
vertical-align: middle;
}
#section_ultimas_avaliacoes #cards_ultimas_avaliacoes h2 {
display: inline;
vertical-align: middle;
margin-left: 5px;
}
#section_ultimas_avaliacoes #cards_ultimas_avaliacoes .card-text {
margin: 5px;
}
/* Rodapé da página */
footer {
background: #c0c0c0;
color: #020202;
text-align: center;
}
/* Imagens da parte 'Em destaque' */
#cards_filmes_destaque>div>div>a>img {
margin: 10px;
}
/* Comentários das últimas avaliações */
#cards_ultimas_avaliacoes>div>div>div>p {
font-size: 12pt;
text-overflow: ellipsis;
overflow: auto;
height: 400px;
}