diff options
| author | s1n <[email protected]> | 2019-11-10 16:26:15 -0800 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-11-10 16:26:15 -0800 |
| commit | bb68c5a9837bfb3828db213e60b798fb27079044 (patch) | |
| tree | c2ce4f656ee9ded0cc8abda71034cc0af249d124 /links | |
| parent | function keys dont exit out (diff) | |
| download | s1n.pw-admin-bb68c5a9837bfb3828db213e60b798fb27079044.tar.xz s1n.pw-admin-bb68c5a9837bfb3828db213e60b798fb27079044.zip | |
add filter basic property
Diffstat (limited to 'links')
| -rw-r--r-- | links/css/main.css | 19 | ||||
| -rw-r--r-- | links/index.html | 19 |
2 files changed, 19 insertions, 19 deletions
diff --git a/links/css/main.css b/links/css/main.css index 0c805c4..04042cc 100644 --- a/links/css/main.css +++ b/links/css/main.css @@ -2,21 +2,16 @@ html { background: black; } -.txt { +.main { color: #fff; - font-family: Helvetica,"Helvetica Neue",Arial,"Lucida Grande",sans-serif; - position: absolute; - top: 47%; - left: 0; - right: 0; + font-family: Helvetica,"Helvetica Neue",Arial,"Lucida Grande", sans-serif; text-align: center; z-index: 1; -} - -@media (max-width: 786px) { - .txt { - top: 46%; - } + margin: auto; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } a:hover { diff --git a/links/index.html b/links/index.html index 95b39e3..5f71002 100644 --- a/links/index.html +++ b/links/index.html @@ -18,12 +18,16 @@ <body> <!-- Visable Script Links --> - <div class="txt"> - <a id="bld" style="font-weight: 700; font-size: 40px;" href="#">s1n</a> - - <div class="light" style="font-weight: 500;"> - <a href="/">/index</a> - <a href="https://p.s1n.pw">/port</a> + <div class="main"> + <div class="txt"> + <a id="bld" style="font-weight: 700; font-size: 40px;" href="#">s1n</a> + + <div class="light" style="font-weight: 500;"> + <a href="/">/index</a><br> + <a href="https://p.s1n.pw">/port</a><br> + <a href="/s1nprv.club/">/s1nprv.club</a><br> + <a href="/oauth2/">/oauth2</a> + </div> </div> </div> @@ -31,7 +35,8 @@ <source src="/links/assets/vid.mp4" type="video/mp4"> <script> var video = document.currentScript.parentElement; - video.volume = 0.1; + video.volume = 0.3; + document.getElementById("vid").controls = true; </script> </video> </body> |