diff options
author | stderr64 <linuxwizard@voidnet.dy.fi> | 2023-10-31 20:03:01 +0200 |
---|---|---|
committer | stderr64 <linuxwizard@voidnet.dy.fi> | 2023-10-31 20:03:01 +0200 |
commit | afa60d27ae96225f34ec20076c118b94fd6cc1aa (patch) | |
tree | 007aab44efc8a82ec8ed9ebf5fef576aaa3dafde | |
parent | 1bd5c06aa023636e70843756fe2aa70e32c0541e (diff) | |
download | VoidNet_New-afa60d27ae96225f34ec20076c118b94fd6cc1aa.tar.gz VoidNet_New-afa60d27ae96225f34ec20076c118b94fd6cc1aa.tar.zst |
Fixed (maybe) the background gradient on mobile devices
-rw-r--r-- | css/voidnet.css | 19 | ||||
-rw-r--r-- | servers/index.html | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/css/voidnet.css b/css/voidnet.css index b4b7b1d..03c216e 100644 --- a/css/voidnet.css +++ b/css/voidnet.css @@ -3,9 +3,26 @@ src: url('../fonts/FreeMono.ttf'); } +:root{ + font-family: "FreeMono"; + background-image: linear-gradient(135deg, #000000, #222222); + background-size: 100% 100%; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center; + width: 100%; + height: 100%; + min-height: 100%; + min-width: 100%; + top: 0px; + left: 0px; + bottom: 0px; + margin: 0px; +} + body{ font-family: "FreeMono"; - background-image: linear-gradient(45deg, #000000, #222222); + background-image: linear-gradient(135deg, #000000, #222222); background-size: 100% 100%; background-attachment: fixed; background-repeat: no-repeat; diff --git a/servers/index.html b/servers/index.html index 3e183ee..bb92460 100644 --- a/servers/index.html +++ b/servers/index.html @@ -30,6 +30,8 @@ <br/> <br/> <span class="content_text"> +Gitweb: <a href="https://gitweb.voidnet.dy.fi" class="content_link" target="_blank" rel="noopener">https://gitweb.voidnet.dy.fi</a> +<br/><br/> Git: <a href="https://git.voidnet.dy.fi" class="content_link" target="_blank" rel="noopener">https://git.voidnet.dy.fi</a> <br/><br/> SVN: <a href="https://svn.voidnet.dy.fi" class="content_link" target="_blank" rel="noopener">https://svn.voidnet.dy.fi</a> |