Initial Commit

This commit is contained in:
hoernschen 2021-02-25 22:23:58 +01:00
parent bdbb15e52e
commit c20d262f7c
26 changed files with 1006 additions and 0 deletions

42
assets/scss/footer.scss Normal file
View file

@ -0,0 +1,42 @@
$color: {{ .Param "color" }};
.footer {
margin: auto;
padding: 1.5rem 0rem;
width: 100%;
flex-shrink: 0;
text-align: center;
display: block;
background-color: #333;
color: #f2f2f2;
}
.social-media-footer {
display: flex;
justify-content: center;
flex-wrap: wrap;
font-size: 2em;
color: $color;
}
.links {
margin-top: 1.5rem;
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 0;
}
.link {
display: flex;
justify-content: space-around;
flex-grow: 0;
flex-shrink: 1;
line-height: 32px;
padding: 0px 24px;
}
.copyright {
margin-top: 2rem;
width: 100%;
font-size: small;
}