Added a header, all links except github only refresh the page. Also added header&footer to App and removed unneccessary login

This commit is contained in:
MisbehavedNinjaRadiator 2025-05-15 18:05:28 +02:00 committed by Luisa Bellitto
parent 27de0af02e
commit bd6578f4ce
4 changed files with 124 additions and 35 deletions

View file

@ -0,0 +1,80 @@
: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;
}