18 lines
449 B
CSS
18 lines
449 B
CSS
@layer pages {
|
|
.home_layout {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
padding: calc(var(--spacing) * 8) calc(var(--spacing) * 48);
|
|
}
|
|
.sologon {
|
|
font-size: calc(var(--font-size) * 6);
|
|
font-style: italic;
|
|
filter: drop-shadow(0 0 calc(var(--spacing) * 4) oklch(from var(--color-yudubai) l c h / 50%));
|
|
}
|
|
}
|