This commit deletes the entire `Gallus_Pub` directory, including its configuration, source files, and dependencies.
63 lines
1010 B
CSS
63 lines
1010 B
CSS
.footer {
|
|
background-color: #213b28;
|
|
color: white;
|
|
padding: 3rem 0;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.footer-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.copyright {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.footer-sections {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-section h3 {
|
|
color: #ffffff;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.footer-section p {
|
|
margin: 0.5rem 0;
|
|
color: #cccccc;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-section a {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-section a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer-sections {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-section {
|
|
padding: 0 1rem;
|
|
}
|
|
}
|