-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
203 lines (174 loc) · 3.38 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
section.Background-IMG {
background-image: url("Background\ Images/89597.jpg");
background-size: cover;
background-position: center;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
}
section.Background-IMG h1 {
color: #fff;
font-size: 48px;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
#cards {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 20px;
margin: -50px auto 50px;
width: 100%;
max-width: 1200px;
padding: 20px;
}
#cards>div {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 20px;
width: 250px;
height: auto;
}
#cards svg {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
#cards h2 {
font-size: 18px;
margin-bottom: 10px;
color: #b64848;
}
#cards p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}
#cards a {
font-size: 14px;
color: #b64848;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
cursor: pointer;
}
#cards a:hover {
color: #0073e6;
/* Cor ao passar o mouse */
}
.rodape {
background-color: #000000;
color: #ffffff;
padding: 30px 50px;
padding-bottom: 10px;
/* Ajuste o padding inferior da seção */
}
.container-rodape {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
}
.coluna-rodape {
flex: 1;
margin: 0 20px;
}
.coluna-rodape h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: bold;
}
.coluna-rodape p,
.coluna-rodape ul,
.coluna-rodape a {
font-size: 14px;
color: #555;
text-decoration: none;
}
#slogan {
text-align: center;
padding: 0;
/* Remove qualquer padding */
margin: 0;
/* Remove qualquer margem */
font-size: 16px;
font-weight: normal;
color: #555;
line-height: 1.5;
}
.coluna-rodape ul {
list-style: none;
margin-top: 10px;
}
.coluna-rodape li {
margin-bottom: 8px;
}
.central-rodape {
text-align: center;
}
.direita-rodape {
text-align: right;
}
.direita-rodape .slogan {
font-size: 16px;
margin-bottom: 10px;
}
.links-sociais {
list-style: none;
}
.links-sociais li a {
display: block;
color: #555;
margin-bottom: 8px;
font-size: 14px;
transition: color 0.3s ease;
}
.links-sociais li a:hover {
color: #fff;
/* Cor ao passar o mouse */
}
.links-esquerda li a {
color: #555;
text-decoration: none;
transition: color 0.3s ease;
}
.links-esquerda li a:hover {
color: #fff;
/* Cor ao passar o mouse */
}
.LogOut {
position: absolute;
/* Permite posicionar o botão */
top: 20px;
/* Distância do topo */
right: 20px;
/* Distância da direita */
background-color: #b64848;
color: #fff;
text-decoration: none;
padding: 5px 7px;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
z-index: 10;
/* Garante que o botão fique acima de outros elementos */
}
.LogOut:hover {
background-color: #0073e6;
transform: scale(1.05);
}