30 lines
549 B
CSS
30 lines
549 B
CSS
.maze-stub {
|
|
height: 100%;
|
|
min-height: calc(100vh - var(--topbar-h));
|
|
margin: -28px -32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.maze-stub-inner {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.maze-stub-title {
|
|
font-size: var(--fs-page);
|
|
letter-spacing: var(--ls-title);
|
|
font-weight: 700;
|
|
color: var(--violet);
|
|
filter: drop-shadow(var(--violet-glow));
|
|
}
|
|
|
|
.maze-stub-sub {
|
|
font-size: var(--fs-mini);
|
|
letter-spacing: var(--ls-nav);
|
|
text-transform: uppercase;
|
|
}
|