Footer navigation

This commit is contained in:
2025-03-17 18:50:20 +01:00
parent e984005f5e
commit fe83027055
2 changed files with 100 additions and 2 deletions

View File

@@ -14,6 +14,14 @@ h1,h2,h3,h4,h5,p{
/*Family Roboto or Atma ?*/
}
a{
text-decoration: none;
}
a:visited{
color: #EAEAEA;
text-decoration: none;
}
.test{
border: red dotted 2px;
}
@@ -249,3 +257,76 @@ h1,h2,h3,h4,h5,p{
font-size: 1.1em;
}
footer{
background-color: #2c2b2b;
margin-top: 50px;
border-top: #EAEAEA 2px solid;
height: fit-content;
position: relative; /* So img can be absolute */
}
#footer_content{
width: 80%;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#footer_content_links{
display: flex;
flex-direction: row;
width: 25%;
min-width: 50px;
flex-wrap: wrap;
border: 2px rgb(212, 15, 230) dotted;
}
#footer_content_links h1{
font-size: 2em;
width: 100%;
margin: 0;
}
.footer_links_box{
border: 3px blue dotted;
width: fit-content;
margin-right: 20px;
margin-bottom: 15px;
}
.footer_links_box_title{
font-size: 1.8em;
border-bottom: rgb(179, 72, 122) 2px solid;
margin: 0;
margin-bottom: 2px;
margin-top: 2px;
}
.footer_links_box ul{
text-decoration: none;
padding: 0;
margin: 0;
margin-top: 4px;
}
.footer_links_box li p{
margin: 0;
font-size: 1.2em;
text-decoration: none;
margin-bottom: 2px;
}
#footer_little_text{
font-size: 0.8em;
margin: 0;
margin-left: 20px;
}
#footer_picture{
width: 5vw;
height: 5vw;
right: 10%;
top: 10px;
border: 2px green dotted;
position: absolute;
}
#footer_picture img{
width: 100%;
height: 100%;
}