Files
front-AT/app/Components/Header/Header.module.css
T

36 lines
542 B
CSS
Raw Normal View History

2025-09-02 19:50:17 -04:00
.logo {
2025-09-24 14:05:51 -06:00
position: relative;
filter: invert(1);
z-index: 3;
margin: 5px;
2025-09-02 19:50:17 -04:00
}
.cedetecContainer {
2025-09-24 14:05:51 -06:00
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 100%;
z-index: -1;
2025-09-02 19:50:17 -04:00
}
.cedetecContainer::after {
2025-09-24 14:05:51 -06:00
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right, #f9f9f9, rgba(128, 128, 128, 0));
2025-09-02 19:50:17 -04:00
}
.yellowPart {
2025-09-24 14:05:51 -06:00
position: absolute;
content: "";
top: 0;
left: -20px;
width: 50%;
height: 100%;
min-width: 300px;
background: #bd8c01;
transform: skew(-45deg);
z-index: 0;
2025-09-02 19:50:17 -04:00
}