mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
68b433f148
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
50 lines
795 B
SCSS
50 lines
795 B
SCSS
@import "../config/_novpn.scss";
|
|
|
|
* {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: $default-font-colour;
|
|
font-family: $default-font;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
#matrix {
|
|
position: fixed;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
|
|
border-color: $bg;
|
|
background-color: $bg;
|
|
|
|
z-index: -1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content {
|
|
position: sticky;
|
|
display: block;
|
|
height: 100%;
|
|
}
|
|
|
|
.page-intro {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-ms-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|