mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 01:59:25 +01:00
51 lines
No EOL
793 B
CSS
51 lines
No EOL
793 B
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: white;
|
|
font-family: sans;
|
|
scroll-behavior: smooth;
|
|
-ms-overflow-style: none;
|
|
/* for Internet Explorer, Edge */
|
|
scrollbar-width: none;
|
|
/* for Firefox */
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
/* for Chrome, Safari, and Opera */
|
|
}
|
|
|
|
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: black;
|
|
background-color: black;
|
|
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%);
|
|
transform: translate(-50%, -50%);
|
|
} |