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

styles and back button

This commit is contained in:
muerwre 2019-07-27 07:08:22 +07:00
parent 1b37ed4bbf
commit c13c0fcc3c
7 changed files with 14 additions and 12 deletions

View file

@ -55,9 +55,7 @@ export const SidePane: FC<IProps> = ({
<div className={styles.flexy} /> <div className={styles.flexy} />
<div className={styles.group}> <div className={styles.btn}>S</div>
<div className={styles.btn} />
</div>
</div> </div>
); );
}; };

View file

@ -54,11 +54,15 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font: $font_24_semibold; font: $font_24_medium;
&:global(.orange) { &:global(.orange) {
background: linear-gradient(280deg, $red, $orange); background: linear-gradient(280deg, $red, $orange);
color: transparentize(black, 0.7); color: transparentize(black, 0.7);
width: 66px;
border-radius: 6px 0 0 6px;
position: relative;
left: 0;
} }
} }

View file

@ -59,8 +59,9 @@
right: 4px; right: 4px;
width: 24px; width: 24px;
height: 52px; height: 52px;
background: $olive; background: $green_gradient;
box-shadow: transparentize(black, 0.8) 4px 2px; box-shadow: transparentize(black, 0.8) 4px 2px;
border-radius: 2px;
} }
} }

View file

@ -1,6 +1,7 @@
.wrap { .wrap {
padding: $gap; padding: $gap;
background: transparentize(black, 0.8); background: transparentize(black, 0.8);
border-radius: $panel_radius;
} }
.grid { .grid {
@ -21,7 +22,7 @@
.title { .title {
font: $font_14_semibold; font: $font_14_semibold;
text-transform: uppercase; text-transform: uppercase;
color: transparentize(white, 0.7); color: transparentize(white, 0.3);
flex-direction: row; flex-direction: row;
display: flex; display: flex;
align-items: center; align-items: center;

View file

@ -84,9 +84,7 @@ const ImageExample: FC<IProps> = () => (
<TagField> <TagField>
<Tag title="Избранный" feature="red" /> <Tag title="Избранный" feature="red" />
<Tag title="Some another tag" feature="blue" />
<Tag title="Плэйлист" feature="green" /> <Tag title="Плэйлист" feature="green" />
<Tag title="/Revelations" feature="olive" />
<Tag title="Tag" /> <Tag title="Tag" />
<Tag title="Фотография" feature="black" /> <Tag title="Фотография" feature="black" />
<Tag title="С музыкой" feature="black" /> <Tag title="С музыкой" feature="black" />
@ -96,8 +94,6 @@ const ImageExample: FC<IProps> = () => (
title="First album" title="First album"
/> />
<div />
<NodeRelated <NodeRelated
title="Second album" title="Second album"
/> />

View file

@ -5,10 +5,11 @@ $blue: #3ca1ff;
$green: #00d2b9; $green: #00d2b9;
$olive: #8bc12a; $olive: #8bc12a;
$orange: #ff7549; $orange: #ff7549;
$grass: #41800d;
$red_gradient: linear-gradient(170deg, $orange, $red); $red_gradient: linear-gradient(170deg, $orange -50%, $red 150%);
$blue_gradient: linear-gradient(170deg, $green, $dark_blue); $blue_gradient: linear-gradient(170deg, $green, $dark_blue);
$green_gradient: linear-gradient(170deg, $green, $olive); $green_gradient: linear-gradient(170deg, $olive -20%, $grass 120%);
$purple_gradient: linear-gradient(170deg, $red, $dark_blue); $purple_gradient: linear-gradient(170deg, $red, $dark_blue);
//$color_yellow: complement($color_red); //$color_yellow: complement($color_red);
//$color_yellow: yellow; //$color_yellow: yellow;

View file

@ -30,6 +30,7 @@ $font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helve
$font_48_semibold: $semibold 48px $font; $font_48_semibold: $semibold 48px $font;
$font_24_bold: $bold 24px $font; $font_24_bold: $bold 24px $font;
$font_24_semibold: $bold 24px $font; $font_24_semibold: $bold 24px $font;
$font_24_medium: $medium 24px $font;
$font_24_regular: $regular 24px $font; $font_24_regular: $regular 24px $font;
$font_18_regular: $regular 18px $font; $font_18_regular: $regular 18px $font;
$font_18_extra_light: $extra_light 18px $font; $font_18_extra_light: $extra_light 18px $font;