-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle65.css
More file actions
116 lines (102 loc) · 1.95 KB
/
style65.css
File metadata and controls
116 lines (102 loc) · 1.95 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
/* CSS existente (não alterado) */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
border-radius: 15px 15px 0 0;
position: relative;
}
header .back-button {
position: absolute;
top: 20px;
right: 20px;
color: white;
text-decoration: none;
background-color: #45a049;
padding: 10px 20px;
border-radius: 5px;
}
header .back-button:hover {
background-color: #397d3b;
}
main {
padding: 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.photo {
background-color: white;
margin: 10px;
padding: 10px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
width: calc(20% - 40px);
text-align: center;
}
.photo img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.photo p {
margin-top: 10px;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
border-radius: 0 0 15px 15px;
}
/* CSS Adicional */
.title {
opacity: 0;
transition: opacity 2s ease-in-out;
font-size: 2em;
text-align: center;
margin-top: 20px;
font-weight: bold;
}
.show-title .title {
opacity: 1;
}
.content {
font-size: 1.2em;
margin-top: 20px;
text-align: center;
}
/* CSS Adicional para o botão de contato */
.contact-button {
display: inline-flex;
align-items: center;
background-color: #4CAF50; /* Cor verde do cabeçalho */
color: white;
padding: 10px 20px;
border-radius: 50px;
text-decoration: none;
font-size: 1em;
margin-top: 20px;
text-align: center;
}
.contact-button img {
width: 24px;
height: 24px;
margin-right: 10px;
border-radius: 50%;
}
.contact-button:hover {
background-color: #397d3b;
}