mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-13 08:11:11 +00:00
80 lines
1.1 KiB
CSS
80 lines
1.1 KiB
CSS
:root {
|
|
--Rotkehlchen-gray: #e7ecf2;
|
|
--Rotkehlchen-brown1: #a28d7a;
|
|
--Rotkehlchen-orange-default: #e79a0e;
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: var(--Rotkehlchen-gray);
|
|
padding: 1rem 2rem;
|
|
}
|
|
|
|
.footer-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
.footer-link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: #000;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
}
|
|
.footer-link.github img {
|
|
width: 20px;
|
|
height: 20px;
|
|
transform: scale(1.9);
|
|
}
|
|
.footer-link.feather img {
|
|
width: 20px;
|
|
height: 20px;
|
|
transform: scale(1.5);
|
|
}
|
|
|
|
|
|
.footer-link img {
|
|
width: 20px;
|
|
height: 20px;
|
|
object-fit:unset;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-link.feather span {
|
|
color: var(--Rotkehlchen-orange-default);
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.footer-right {
|
|
display: flex;
|
|
gap: 4rem;
|
|
}
|
|
|
|
.footer-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.footer-column a {
|
|
color: black;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer-column a:hover {
|
|
text-decoration: underline;
|
|
}
|