-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
188 lines (156 loc) · 3.41 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
@font-face {
font-family: 'old-school';
src: url('fonts/old_school_united_stencil.ttf'),
url('fonts/old_school_united_stencil_italic.ttf');
}
body {
font-family: 'Poppins', sans-serif;;
}
.logo {
font-family: 'old-school';
font-style: italic;
font-size: 1.5rem;
}
.nav-item > .active {
color: #ff5900 !important;
}
.lead {
font-weight: 500;
color: rgba(0, 0, 0, .6);
}
article > p {
text-align: justify;
}
.blockquote {
font-weight: 600;
font-style: italic;
}
.article-img {
border-radius: 20px;
border: 3px solid #ff5900;
box-shadow: 8px 8px 30px rgba(0, 0, 0, .8);
margin-top: 20px;
margin-bottom: 20px;
}
figure {
font-style: italic;
font-size: smaller;
text-align: center;
}
/*-------------------------------------------------------------------------------------------------------------------*/
/*Menu videos*/
.custom-bg {
background: rgba(0, 0, 0, 0.8);
color: #fff; /* Define a cor do texto para branco */
width: fit-content; /* Ajusta a largura ao conteúdo do texto */
padding: 10px; /* Adiciona um preenchimento para melhor legibilidade */
}
#meuSlider{
border-radius: 15px;
border: 3px solid #ff5900;
}
#meuSlider.carousel img {
border-radius: 15px;
}
.flexible-row {
display: flex;
flex-wrap: wrap;
}
.card-video {
width: 300px;
height: 284.78px;
background: #ffffff;
padding: .4em;
border-radius: 6px;
margin-right: 2rem;
}
.card-videos {
background-color: #ececec;
width: 300px;
height: 168.7px;
border-radius: 15px;
}
.heading-videos {
font-weight: 600;
color: #6b6b6b;
padding: 7px;
padding-top: 10px;
}
.heading-videos:hover {
cursor: pointer;
}
.author {
color: #525252;
font-weight: 400;
font-size: 11px;
padding-top: 20px;
}
.name {
font-weight: 600;
}
.name:hover {
cursor: pointer;
}
@media (max-width: 768px) {
.flexible-row {
justify-content: center; /* Centraliza os vídeos em dispositivos móveis */
}
.card-video {
width: 100%;
height: 354px;
max-width: none; /* Remove a largura máxima para ocupar toda a largura disponível */
margin-right: 0; /* Remove a margem direita */
margin-bottom: 2rem; /* Mantém a margem inferior para espaçamento */
}
.card-videos, iframe {
width: 100%;
max-width: none; /* Remove a largura máxima para ocupar toda a largura disponível */
height: 214px;
}
}
/*-------------------------------------------------------------------------------------------------------------------*/
/*Menu galeria de fotos*/
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 16px;
}
.gallery img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
transition: transform 0.2s;
align-self: start;
}
.gallery img:hover {
transform: scale(1.1);
}
/* Lightbox (inicialmente escondido) */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
justify-content: center;
align-items: center;
}
.lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: 8px;
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
color: #fff;
background: none;
border: none;
cursor: pointer;
}
/*-------------------------------------------------------------------------------------------------------------------*/