61 lines
844 B
CSS
61 lines
844 B
CSS
.footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 12px;
|
|
background-color: #1d1d1d;
|
|
flex-direction: column;
|
|
padding: 12px;
|
|
}
|
|
|
|
.footer p {
|
|
color: #fff;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 2px 0;
|
|
}
|
|
|
|
.footer h1 {
|
|
color: var(--color-heading-h1);
|
|
}
|
|
|
|
.footer .socials {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
|
|
.footer .divider {
|
|
width: 1px;
|
|
height: 20px;
|
|
background-color: #4e4e4e;
|
|
}
|
|
|
|
.footer .imprint {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
|
|
.footer .imprint a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footerCreator {
|
|
border-top: 1px #303030 solid;
|
|
background-color: #212121;
|
|
}
|
|
|
|
.footerCreator p {
|
|
color: #cfcfcf;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.footerCreator .companyName {
|
|
color: #6878d6;
|
|
text-decoration: none;
|
|
}
|