Skip to content

Commit f7b586f

Browse files
Update style.css
1 parent 33f1262 commit f7b586f

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

style.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,36 @@ a:hover::after {
141141
scroll-behavior: smooth;
142142
}
143143
}
144+
145+
/* Estilos para as novas funcionalidades */
146+
.secao-ativa {
147+
background: #fff !important;
148+
border-left: 4px solid var(--secondary-color);
149+
}
150+
151+
.back-to-top {
152+
position: fixed;
153+
bottom: 30px;
154+
right: 30px;
155+
padding: 15px;
156+
border: none;
157+
border-radius: 50%;
158+
background: var(--secondary-color);
159+
color: white;
160+
cursor: pointer;
161+
opacity: 0.9;
162+
transition: all 0.3s ease;
163+
display: none;
164+
}
165+
166+
.back-to-top:hover {
167+
opacity: 1;
168+
transform: scale(1.1);
169+
box-shadow: var(--box-shadow);
170+
}
171+
172+
.ultima-atualizacao {
173+
color: #666;
174+
font-size: 0.9em;
175+
margin-top: 1rem;
176+
font

0 commit comments

Comments
 (0)