1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed boris

This commit is contained in:
Fedor Katurov 2019-11-08 17:41:36 +07:00
parent f355bec236
commit a0d4025890
4 changed files with 53 additions and 12 deletions

View file

@ -17,12 +17,12 @@
.column {
flex: 1;
background: $content_bg;
height: 400px;
position: relative;
z-index: 2;
margin-top: 33vh;
margin-right: $gap;
border-radius: $radius;
padding: $gap * 2;
}
.content {
@ -45,3 +45,33 @@
// background: linear-gradient($red, transparentize($red, 1));
background: 50% 0% no-repeat/cover url('~/sprites/illustrate.svg');
}
.header {
font-size: 2em;
}
.daygrid {
display: grid;
grid-template-columns: 1fr 100%;
column-gap: $gap;
align-items: center;
}
.day {
font-size: 2em;
font-weight: 600;
text-align: right;
}
.label {
font: $font_14_regular;
text-transform: uppercase;
margin-bottom: 5px;
opacity: 0.5;
grid-column: 1/3;
}
.line {
grid-column: 1/3;
height: $gap * 4;
}