mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
73 lines
1.3 KiB
SCSS
73 lines
1.3 KiB
SCSS
.wrap {
|
|
background: $node_title_background;
|
|
padding: $gap;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: stretch;
|
|
border-radius: $cell_radius $cell_radius 0 0;
|
|
box-shadow: transparentize(white, 0.97) 0 1px, inset transparentize(white, 0.97) 0 1px;
|
|
position: relative;
|
|
margin-top: -$radius;
|
|
}
|
|
|
|
.title {
|
|
text-transform: uppercase;
|
|
font: $font_24_semibold;
|
|
height: 24px;
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
.name {
|
|
font: $font_12_regular;
|
|
color: transparentize(white, 0.5);
|
|
}
|
|
|
|
.btn {
|
|
flex: 1;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
fill: transparentize(white, 0.5);
|
|
}
|
|
|
|
.panel {
|
|
flex: 1;
|
|
}
|
|
|
|
.buttons {
|
|
height: 54px;
|
|
border-radius: $radius $radius 0 0;
|
|
background: linear-gradient(176deg, #f42a00, #5c1085);
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 10px;
|
|
width: 270px;
|
|
display: flex;
|
|
}
|
|
|
|
.mark {
|
|
flex: 0 0 32px;
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: ' ';
|
|
position: absolute;
|
|
top: -38px;
|
|
right: 4px;
|
|
width: 24px;
|
|
height: 52px;
|
|
background: $green_gradient;
|
|
box-shadow: transparentize(black, 0.8) 4px 2px;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
|
|
.sep {
|
|
flex: 0 0 12px;
|
|
height: 6px;
|
|
width: 12px;
|
|
border-radius: 4px;
|
|
background: transparentize(black, 0.7);
|
|
}
|