geeks-ui-framework
Version:
A modern, lightweight CSS framework with 15+ components for developers. Build beautiful interfaces with minimal effort.
28 lines (24 loc) • 504 B
CSS
/*
Geeks UI - Footer Components
Footer styling and layout
*/
.footer {
background-color: var(--geeks-ui-secondary);
color: var(--geeks-ui-text-light);
padding: 2rem 0;
margin-top: auto;
}
.footer p {
margin: 0;
text-align: center;
opacity: 0.9;
}
.footer a {
color: var(--geeks-ui-text-light);
text-decoration: none;
transition: var(--geeks-ui-transition);
}
.footer a:hover {
opacity: 0.8;
text-decoration: underline;
}