1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-01 07:36:40 +07:00

fixed grid layout

This commit is contained in:
muerwre 2019-04-04 12:08:36 +07:00
parent debb0640da
commit 6168841f78
8 changed files with 73 additions and 31 deletions

View file

@ -1,4 +1,6 @@
$main_bg_color: #111111;
$main_bg_color: #161616;
$main_text_color: white;
$content_bg_color: #191919;
$content_bg_color: #222222;
$cell_bg: transparentize(white, 0.95);

View file

@ -2,8 +2,8 @@
body {
background: $main_bg_color;
background: $main_bg_color url("../sprites/dots.svg");
//url("http://vault48.org/pixmaps/texture.jpg");
//background: $main_bg_color url("../sprites/dots.svg");
background: url("http://vault48.org/pixmaps/texture.jpg");
//background: #111111;
color: $main_text_color;
font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
@ -13,14 +13,15 @@ body {
&::before {
content: '';
position: absolute;
height: 100%;
height: 200px;
width: 100%;
top: 0;
left: 0;
z-index: -1;
background: url("../sprites/circles.svg");
//background: url("../sprites/circles.svg");
background: url("http://vault48.org/pixmaps/texture_alt.jpg");
pointer-events: none;
background-size: cover;
//background-size: cover;
}
}
@ -39,7 +40,7 @@ body {
:global(.head_container) {
background: $main_bg_color;
//background: $main_bg_color;
}
:global(.footer) {

View file

@ -1,7 +1,7 @@
@import 'colors';
$cell: 256px;
$content_width: $cell * 5;
$content_width: $cell * 4;
$gap: 8px;
$spc: $gap * 2;
$panel_radius: 1px;