1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

fixed textures

This commit is contained in:
Fedor Katurov 2019-10-21 19:42:11 +07:00
parent 88333e36b7
commit d22c1f64d0
6 changed files with 14 additions and 8 deletions

View file

@ -7,7 +7,8 @@ html {
body {
background: darken($main_bg_color, 12%);
min-height: 100vh;
background: url('http://vault48.org/pixmaps/texture.jpg');
// background: url('http://vault48.org/pixmaps/texture.jpg');
background: url('../../src/sprites/noise.png') $main_bg_color;
color: $main_text_color;
font: $font_16_regular;
-webkit-font-smoothing: antialiased;
@ -18,12 +19,14 @@ body {
&::before {
content: '';
position: absolute;
height: 400px;
height: 600px;
width: 100%;
top: 0;
left: 0;
z-index: -1;
background: url('http://vault48.org/pixmaps/texture_alt.jpg');
// background: url('http://vault48.org/pixmaps/texture_alt.jpg');
background: url('../../src/sprites/noise_top.png') 0% 0%;
background-size: 600px 600px;
pointer-events: none;
}
}