-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
152 lines (133 loc) · 2.62 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
/* Estilo básico e cores principais */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
color: #333;
}
h1 {
text-align: center;
color: #fff;
background-color: #333;
position: relative;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
h1::before {
content: "";
background: url('images/banner-principal.jpg') no-repeat center center;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
border-radius: 8px 8px 0 0;
}
p {
text-align: justify;
margin-bottom: 20px;
}
.queijo {
font-weight: bold;
color: #6c757d;
}
.queijo-img {
max-width: 60%;
display: block;
margin: 10px auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.queijo-subtitulo {
font-size: 1.2em;
color: #555;
margin-bottom: 5px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 20px;
}
ul li h3 {
background-color: #eee;
padding: 10px;
border-radius: 8px;
margin-bottom: 10px;
}
h2 {
color: #fff;
background-color: #555;
padding: 10px 20px;
border-radius: 8px;
margin-top: 40px;
margin-bottom: 20px;
position: relative;
}
h2::before {
content: "";
background: url('images/banner-subtitulo.jpg') no-repeat center center;
background-size: cover;
height: 100px;
width: 100%;
position: absolute;
top: -100px;
left: 0;
z-index: -1;
border-radius: 8px 8px 0 0;
}
li::marker {
color: #333;
font-size: 1.5em;
}
li {
background: #fafafa;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Estilo do rodapé */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
margin-top: 20px;
}
.footer-content {
display: flex;
justify-content: center;
align-items: center;
}
.footer-content p {
margin: 0;
flex: 1;
text-align: left;
}
.footer-icon {
width: 900px;
height: 200px;
margin-left: 50px;
}
header {
text-align: center;
margin-bottom: 20px;
}
.header-img {
max-width: 100%;
height: auto;
max-height: 350px; /* Altura máxima do banner */
display: block;
margin: 0 auto;
}