vbytes_website/src/css/Footer.scss
2025-10-30 13:38:14 +01:00

88 lines
No EOL
2 KiB
SCSS

footer {
position: relative;
bottom: 0;
left: 0;
right: 0;
z-index: 6;
min-height: 30vh;
padding: 50px 0;
background-color: #222;
box-shadow: 0px -1px 2px rgba(0, 128, 189,0.5),
0px -2px 4px rgba(0, 128, 189,0.5),
0px -4px 8px rgba(0, 128, 189,0.5),
0px -8px 16px rgba(0, 128, 189,0.5);
.FooterContainer {
max-width: 1440px;
margin: 0 auto;
display: flex;
justify-content: space-between;
color: white;
width: 90%;
.first {
display: flex;
flex-direction: column;
justify-content: space-between;
}
p {
margin-top: 0;
}
}
.footer-address{
font-family: 'Jersey-Regular';
letter-spacing: 0.1em;
text-transform: uppercase;
}
.SocialMedia {
display: flex;
flex-direction: row;
height: 100%;
align-items: center;
padding: 10px 0;
gap: 20px;
margin-top: 20px;
img {
height: 40px;
width: auto;
filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(324deg) brightness(104%) contrast(101%);
transition: unset;
&:hover {
filter: invert(41%) sepia(71%) saturate(5637%) hue-rotate(179deg) brightness(92%) contrast(101%);
}
}
}
ul {
display: flex;
list-style: none;
height: 100%;
padding-right: 20px;
li {
height: 100%;
padding: 0 10px;
a {
text-decoration: none;
color: white;
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
letter-spacing: 1.3px;
}
a:active {
text-decoration: none;
color: white;
}
}
}
}