-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
194 lines (162 loc) · 3.93 KB
/
styles.css
File metadata and controls
194 lines (162 loc) · 3.93 KB
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
189
190
191
192
193
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');
:root {
--laranja-claro: #FF862A;
--alto-contraste-fundo: #000000;
--alto-contraste-texto: #ffffff;
--alto-contraste-link: #ffd700;
}
body {
font-size: 1rem;
font-family: 'Montserrat';
}
header {
background-color: #ffffff;
}
section {
padding-bottom: 5rem;
}
.nav-link {
color: #CB6D43;
font-weight: 600;
}
.inicio-fundo {
/* aula 3 */
background-image: url('img/4965007.jpg');
/* Substitua pelo caminho da sua imagem */
background-size: cover;
background-position: right;
border-radius: 80px;
width: 100%;
height: 606px;
padding: 40px;
margin: 0 auto;
}
/* posicionamento para a imagem à direita */
.img-inicio {
position: absolute;
right: 0;
top: 18rem;
width: 45rem;
height: auto;
}
.esquerda-conteudo {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
.botao-inicio {
background-color: var(--laranja-claro);
border-radius: 30px;
border: none;
width: 14em;
/* Convertido para em aumenta o tamanho da fonte por tabela*/
height: 3em;
/* Convertido para em */
align-content: center;
}
.display-4 {
text-shadow: -5px 5px var(--laranja-claro);
}
#tropicalia {
position: relative;
padding-top: 5rem;
margin-top: 3rem;
margin-bottom: 3rem;
background: url('img/flor.png') top right no-repeat,
url('img/flor-esquerda.png') bottom left no-repeat;
background-size: 180px 180px;
/* Ajuste o tamanho conforme necessário */
}
#tropicalia .container {
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
/* Garante que o conteúdo fica acima das imagens do background */
}
h2 {
font-family: 'Lemon', serif;
font-size: 2.5em;
font-style: normal;
color: var(--laranja-claro);
}
#galeria {
background-color: #FAF4F4;
}
.fundo-galeria {
background: url('img/flor-bottom-direita.png') bottom right no-repeat;
background-size: 180px 180px;
}
#contato {
background-image: url('img/4965007.jpg');
background-size: cover;
padding: 4rem 0;
/* Espaçamento interno para a seção de contato */
}
.formulario {
background-color: #ffffff;
padding: 2rem;
/* Espaçamento interno dentro do formulário */
border-radius: 10px;
/* Borda arredondada para o formulário */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* Sombra suave para destacar o formulário */
font-weight: bold;
}
.formulario button {
background-color: #CB6D43;
border: none;
font-weight: bold;
}
/* chama classe do bootstrap para modificar a cor */
.form-control {
background-color: #F1EDEF;
}
.menu-acessibilidade{
position: fixed;
top:2rem;
right:20px;
z-index: 1000;
}
.rotacao-botao{
transform: rotate(-90deg);
transform-origin: right center;
}
.opcoes-acessibilidade{
margin-top:10px;
display: flex;
flex-direction: column;
}
.opcoes-acessibilidade button{
margin-bottom: 5px;
}
.apresenta-lista{
display: none;
}
.alto-contraste{
background-color: var(--alto-contraste-fundo);
color: var(--alto-contraste-texto);
}
.alto-contraste header, .alto-contraste footer, .alto-contraste .formulario{
background-color: var(--alto-contraste-fundo);
color: var(--alto-contraste-texto);
}
.alto-contraste .nav-link{
color: var(--alto-contraste-link);
}
.alto-contraste .botao-inicio, .alto-contraste .formulario button, .alto-contraste .btn-primary{
background-color: var(--alto-contraste-link);
color: var(--alto-contraste-fundo)
}
.alto-contraste #tropicalia {
background: none;
}
.alto-contraste #galeria {
background-color: var(--alto-contraste-fundo);
}
.alto-contraste .fundo-galeria {
background: none;
}