@@ -0,0 +1,53 @@
|
||||
.footer {
|
||||
margin-top: auto;
|
||||
padding: 1.5rem 0 0.5rem 0;
|
||||
text-align: center;
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 1.5rem;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
.footer-content:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.footer-link {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.footer-link:hover {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.footer-credits {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.footer-credits p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer-credits strong {
|
||||
font-weight: 500;
|
||||
color: var(--text);
|
||||
margin-left: 0.2rem;
|
||||
}
|
||||
Reference in New Issue
Block a user