mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-12 22:18:49 +00:00
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:
parent
27de0af02e
commit
bd6578f4ce
4 changed files with 124 additions and 35 deletions
80
code/frontend/src/Footer.css
Normal file
80
code/frontend/src/Footer.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue