-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.13 KB
/
style.css
File metadata and controls
77 lines (66 loc) · 1.13 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #ffffff;
color: #333;
padding: 20px;
}
header {
background-color: #218bbd;
color: rgb(255, 255, 255);
text-align: center;
padding: 40px 20px;
border-radius: 8px;
}
section {
margin: 30px 0;
background-color: #70abea;
padding: 20px;
border-left: 5px solid #000000;
border-radius: 4px;
}
h2 {
margin-bottom: 10px;
color: #ffffff;
}
ul {
list-style: none;
}
li {
padding: 5px 0;
}
footer {
text-align: center;
color: #777;
margin-top: 40px;
}
/* Estilo básico para o layout da galeria */
#galeria {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
padding: 20px;
}
.imagem-container {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.imagem-restaurante {
width: 250px;
height: 150px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
/* Efeito de zoom ao passar o mouse sobre a imagem */
.imagem-restaurante:hover {
transform: scale(1.05);
}