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

refactored flow cells, added colors for lab (#78)

* made better flow cells

* made cubical desaturation

* made colorfull lab nodes

* colorful lab nodes for all text ones

* all lab nodes are colorful

* disabled lazy loading on heroes

* fixed color calculation hook

* fixed lab color gradients calculation

* fixed cell text on flow
This commit is contained in:
muerwre 2021-10-08 11:33:53 +07:00 committed by GitHub
parent 7d6f35b0af
commit 94c656fe0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 345 additions and 63 deletions

View file

@ -27,6 +27,10 @@ body {
background-size: 600px 600px;
pointer-events: none;
}
* {
box-sizing: border-box;
}
}
#app {

View file

@ -112,7 +112,7 @@ $margin: 1em;
}
:global(.grey) {
color: #555555;
color: #666666;
white-space: pre-line;
}
}

View file

@ -194,13 +194,13 @@ $sidebar_border: transparentize(white, 0.95);
}
}
@mixin blur($color: $content_bg, $radius: 15px) {
background: transparentize($color, 0.1);
@mixin blur($color: $content_bg, $radius: 15px, $opacity: 0.5) {
background: transparentize($color, $opacity / 2);
@include can_backdrop {
backdrop-filter: blur($radius);
-webkit-backdrop-filter: blur($radius);
background: transparentize($color, 0.5);
background: transparentize($color, $opacity);
}
}