-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (114 loc) · 2.75 KB
/
Copy pathstyle.css
File metadata and controls
142 lines (114 loc) · 2.75 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
@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;
}
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;
}