Files
pixelstreamingwebreact/src/components/footer/footer.css
T

208 lines
3.5 KiB
CSS

.footer-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #1E1630;
color: #FFFFFF;
padding: 120px 12%;
box-sizing: border-box;
}
.footer-content-container {
display: flex;
width: 100%;
gap: 100px;
box-sizing: border-box;
}
.footer-content-logo {
width: 70px;
height: 113px;
}
.footer-content-contacts {
display: flex;
gap: 60px;
width: 100%;
justify-content: space-between;
box-sizing: border-box;
}
.footer-content-contacts-first-container {
flex: 2;
}
.footer-content-contacts-second-container {
flex: 3;
display: flex;
gap: 60px;
/* width: 100%; */
/* justify-content: space-between; */
box-sizing: border-box;
}
.contact-header {
display: flex;
flex-direction: column;
gap: 10px;
}
.contact-header-title {
font-weight: 500;
font-size: 24px;
line-height: 110%;
}
.contact-header-line {
height: 2px;
width: 100%;
background-color: #979797;
}
.contact-href,
a {
color: #FFFFFF;
transition: .2s;
}
.contact-href:hover,
a:hover {
color: #CE56C2;
transition: .2s;
}
.contact-container {
width: 100%;
min-width: 230px;
display: flex;
flex-direction: column;
gap: 25px;
}
.contact-data-container {
display: flex;
flex-direction: column;
gap: 12px;
font-weight: 400;
font-size: 18px;
line-height: 130%;
}
.contact-data-row {
display: flex;
width: 100%;
justify-content: space-between;
gap: 20px;
}
.contact-data-value-container {
display: flex;
justify-content: flex-start;
width: 100%;
/* flex-shrink: 0; */
/* min-width: 160px; */
/* flex-shrink: 0; */
}
@media screen and (max-width: 1280px) {
.footer-container {
padding: 120px 2%;
}
.main-part-text-container {
z-index: 1;
width: 600px;
display: flex;
flex-direction: column;
gap: 40px;
}
.footer-content-container {
gap: 60px;
}
.footer-content-contacts {
gap: 40px;
}
}
@media screen and (max-width: 1024px) {
.footer-container {
padding: 80px 20px 70px 20px;
}
.footer-content-container {
flex-direction: column;
gap: 60px;
flex-wrap: wrap;
}
.footer-content-contacts {
flex-direction: column;
/* justify-content: space-between; */
}
.contact-data-row {
display: flex;
width: 100%;
justify-content: space-between;
gap: 20px;
}
.contact-data-value-container {
width: 100%;
flex-shrink: 1;
/* min-width: 160px; */
/* flex-shrink: 0; */
}
.footer-content-contacts-second-container {
gap: 40px;
}
}
@media screen and (max-width: 640px) {
.footer-container {
padding: 40px 10px;
}
.footer-content-logo {
width: 40px;
height: 65px;
}
.footer-content-container {
flex-direction: column;
gap: 40px;
}
.footer-content-contacts {
flex-direction: column;
}
.contact-data-row {
display: flex;
width: 100%;
justify-content: space-between;
gap: 20px;
}
.footer-content-contacts-second-container {
flex-direction: column;
}
.contact-header-title {
font-size: 18px;
}
.contact-data-container {
font-size: 14px;
}
}