bl-frontend-rs/css/footer.css

104 lines
1.9 KiB
CSS
Raw Normal View History

2023-04-28 13:26:40 +00:00
.footer {
width: 80%;
height: 400px;
margin-top: 150px;
background-color: #00113B;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px 10vw;
}
.footer-before-line {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
}
.footer-before-line-first-column {
display: flex;
flex-direction: column;
justify-content: end;
align-items: start;
gap: 10px;
height: 100%;
}
.footer-before-line-first-column-logo {
object-fit: cover;
width: 50px;
height: 75px;
}
.footer-before-line-first-column-paragraph {
width: 40vw;
font-family: Poppins;
font-size: clamp(9px, 1.8vw, 16px);
color: white;
line-height: 24px;
opacity: 75%;
text-align: justify;
}
.footer-before-line-second-column {
display: flex;
flex-direction: column;
justify-content: end;
align-items: end;
width: 100px;
flex-grow: 0;
height: 100%;
}
.footer-before-line-second-column-title {
color: white;
font-family: Poppins;
font-size: 18px;
font-weight: 600;
}
.footer-before-line-second-column-description {
color: white;
font-family: Poppins;
font-size: clamp(9px, 1.8vw, 16px);
font-weight: 400;
line-height: 20px;
opacity: 75%;
white-space: pre-line;
text-align: end;
}
.footer-line {
background-color: white;
width: 100%;
height: 1px;
margin: 20px 0px;
}
.footer-after-line {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
}
.footer-after-line-copyright {
font-family: Poppins;
font-size: 11px;
color: white;
opacity: 75%;
text-align: start;
}
.footer-after-line-socials {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
width: 100px;
}