47 lines
710 B
CSS
47 lines
710 B
CSS
.logo {
|
|
position: relative;
|
|
z-index: 3;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
height: 100%;
|
|
align-items: center;
|
|
width: 350px;
|
|
}
|
|
|
|
.cedetecContainer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 200px;
|
|
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: 30px;
|
|
min-width: 300px;
|
|
background: linear-gradient(to right, #bd8c01 40%, #fff 100%);
|
|
transform: skew(-45deg);
|
|
z-index: 0;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
.yellowPart {
|
|
background: #bd8c01;
|
|
}
|
|
}
|