-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
169 lines (147 loc) · 3.1 KB
/
styles.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
/* Estilos Globais */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
display: flex;
flex-direction: column;
align-items: center;
}
/* Cabeçalho */
header {
background-color: #42b883;
padding: 20px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px; /* Garante que o cabeçalho não exceda o tamanho máximo */
width: 100%;
}
.logo-container {
display: flex;
align-items: center;
}
.logo {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
h1 {
margin: 0;
font-size: 24px;
color: #fff;
}
.menu-btn, .back-btn {
background-color: transparent;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
}
/* Menu Hambúrguer */
#menu {
display: none;
flex-direction: column;
position: absolute;
top: 80px;
right: 20px;
background-color: #42b883;
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#menu a {
color: #fff;
text-decoration: none;
margin-bottom: 10px;
}
#menu.active {
display: flex;
}
/* Grade de Produtos */
main {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
padding: 20px;
max-width: 1000px; /* Ajuste o tamanho do conteúdo */
width: 100%;
}
.produto {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center; /* Centraliza o conteúdo dentro do .produto */
}
.produto a {
display: block; /* Transforma o link em bloco para ocupar todo o espaço do .produto */
text-decoration: none; /* Remove o sublinhado do link */
color: black; /* Define a cor do texto para preto */
}
.produto img {
width: 80%; /* Ajusta o tamanho da imagem */
max-width: 300px; /* Limita o tamanho máximo */
border-radius: 10px;
cursor: pointer;
}
.produto p {
margin-top: 10px;
font-size: 16px;
color: #333; /* Cor do texto abaixo da imagem */
}
/* Rodapé */
.rodape {
height: 10px;
width: 100%;
background-color: green;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
/* Animação do Título Piscante */
@keyframes blink {
0%, 100% { color: initial; }
50% { color: #00ff00; } /* Verde brilhante */
}
.blinking-title {
font-size: 2em;
text-align: center;
animation: blink 1s infinite;
margin: 20px 0;
}
/* Texto Informativo */
.informativo {
text-align: center;
font-size: 1.2em;
color: #555;
margin-bottom: 20px;
}
/* Imagens responsivas */
img {
max-width: 100%;
height: auto;
}
/* Menu responsivo */
@media (max-width: 768px) {
header {
flex-direction: column;
}
#menu {
top: 60px;
right: 0;
width: 100%;
}
#menu a {
margin-bottom: 5px;
}
}
/* Ajustes gerais */
header, .rodape, main {
width: 100%;
max-width: 1200px;
}