Files
front-AT/app/Components/layout/Footer/Footer.module.css
T

38 lines
607 B
CSS
Raw Normal View History

2025-09-08 19:35:24 -04:00
.yellowPart {
2025-09-24 14:05:51 -06:00
position: absolute;
content: "";
top: 0;
left: -50px;
width: 20%;
height: 100%;
min-width: 300px;
background: linear-gradient(to left, #003e79, #bd8c01);
transform: skew(45deg);
z-index: 1;
2025-09-08 19:35:24 -04:00
}
.yellowPartOpuest {
2025-09-24 14:05:51 -06:00
position: absolute;
content: "";
top: 0;
right: -50px;
width: 20%;
height: 100%;
min-width: 300px;
background: linear-gradient(to right, #003d79, #bd8c01);
transform: skew(-45deg);
z-index: 1;
2025-09-08 19:35:24 -04:00
}
2025-09-12 13:17:01 -04:00
2025-09-24 14:05:51 -06:00
@media (max-width: 800px) {
.yellowPart {
width: 5%;
left: -150px;
}
2025-09-12 13:17:01 -04:00
2025-09-24 14:05:51 -06:00
.yellowPartOpuest {
width: 5%;
right: -150px;
}
}