mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
53 lines
868 B
SCSS
53 lines
868 B
SCSS
@import "src/styles/variables";
|
|
|
|
.wrap {
|
|
max-width: 2000px;
|
|
padding: 0 40px 40px 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
$cols: $content_width / $cell;
|
|
|
|
.container {
|
|
max-width: $content_width;
|
|
width: 100%;
|
|
}
|
|
|
|
.grid {
|
|
grid-template-rows: 50vh $cell;
|
|
|
|
@include flow_grid;
|
|
}
|
|
|
|
.pad_last {
|
|
grid-column-end: $cols + 1;
|
|
}
|
|
|
|
.hero {
|
|
grid-row-start: 1;
|
|
grid-row-end: 2;
|
|
grid-column-start: 1;
|
|
grid-column-end: -1;
|
|
background: darken($content_bg, 2%);
|
|
border-radius: $radius;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font: $font_24_semibold;
|
|
}
|
|
|
|
.stamp {
|
|
grid-row-end: span 3;
|
|
grid-column: -2 / -1;
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: stretch;
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
@media(max-width: $flow_hide_recents) {
|
|
grid-column-start: 1;
|
|
grid-row-end: span 1;
|
|
}
|
|
}
|