Files
kiosco_desk/renderer/components/Layout/Header.module.css
T

78 lines
1.2 KiB
CSS
Raw Normal View History

2025-10-29 18:26:25 -06:00
.logo {
position: relative;
filter: invert(1);
z-index: 3;
margin: 5px;
}
.cedetecContainer {
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 100%;
z-index: -1;
}
.cedetecContainer::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right, #f9f9f9, rgba(128, 128, 128, 0));
}
.yellowPart {
position: absolute;
content: "";
top: 0;
left: -20px;
width: 100%;
height: 100%;
min-width: 300px;
background: linear-gradient(to right, #bd8c01, #f9f9f9);
transform: skew(-45deg);
z-index: 0;
}
.header {
display: grid;
grid-template-columns: auto 1fr;
padding: 5px 40px;
position: relative;
overflow: hidden;
background-color: #f9f9f9;
z-index: 1;
height: 70px;
}
.header::after {
content: "";
top: 0;
left: -40px;
position: absolute;
background-color: #003e79;
height: 100%;
width: 30%;
min-width: 300px;
transform: skew(45deg);
z-index: 1;
}
.header::before {
content: "";
top: 0;
left: -20px;
position: absolute;
background-color: rgb(1, 92, 184);
height: 100%;
width: 30%;
min-width: 300px;
transform: skew(45deg);
z-index: 1;
}
@media (max-width: 800px) {
.yellowPart {
background: #bd8c01;
}
}