jl-frontend/css/components/footer.css

113 lines
2.1 KiB
CSS
Raw Normal View History

2023-03-27 11:39:24 +00:00
.footer {
display: flex;
flex-direction: row;
justify-content: space-evenly;
2023-03-27 11:39:24 +00:00
align-items: center;
width: 100%;
height: 210px;
2023-03-27 11:39:24 +00:00
2023-04-04 15:29:34 +00:00
background-color: #02114A;
2023-03-27 11:39:24 +00:00
}
.footer-brand-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
height: 100%;
margin-left: 20px;
}
.footer-remax-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
height: 100%;
}
2023-03-27 11:39:24 +00:00
.footer-logo {
object-fit: cover;
width: 100px;
2023-05-05 16:43:57 +00:00
height: 97px;
2023-03-27 11:39:24 +00:00
}
.footer-remax-logo {
object-fit: cover;
width: 85px;
height: 85px;
}
2023-03-27 11:39:24 +00:00
.footer-copyright-text {
font-size: 9px;
font-family: Inter;
color: white;
white-space: pre-line;
}
.footer-credit-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 3px;
margin-bottom: 10px;
2023-03-27 11:39:24 +00:00
}
.footer-credit {
font-size: 13px;
font-family: Inter;
color: white;
}
.footer-credit-url {
font-size: 13px;
font-family: Space Grotesk;
text-decoration: none;
2023-03-27 11:39:24 +00:00
color: #04B2D9;
border-bottom: 1px solid #04B2D9;
}
.footer-credit-url:hover {
font-size: 14px;
cursor: pointer;
transition-duration: 0.4s;
}
.footer-brand-socials {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
width: 100%;
}
.footer-brand-social-container {
display: flex;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
border-radius: 30px;
background-color: white;
}
2023-03-27 11:39:24 +00:00
/*
.footer-call-to-action-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-right: 20px;
border-bottom: 2px solid white;
}
.footer-call-to-action-input {
background-color: rgba(255, 255, 255, 0);
border: 0;
font-family: Inter;
color: white;
}
.footer-call-to-action-button{
font-size: 14px;
font-family: Inter;
color: white;
border: 2px solid white;
}*/