diff options
| author | s1n <[email protected]> | 2019-10-25 17:32:34 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-25 17:32:34 -0700 |
| commit | 5b1ffc7d63ce242d6d458f2a4cd96c64eb2c6241 (patch) | |
| tree | d3aef6c1625196b142012b37adc4c46112175fc7 /konami/css/main.css | |
| parent | konami redirects to root (diff) | |
| download | s1n.pw-admin-5b1ffc7d63ce242d6d458f2a4cd96c64eb2c6241.tar.xz s1n.pw-admin-5b1ffc7d63ce242d6d458f2a4cd96c64eb2c6241.zip | |
konami mobile, fix konami redir
Diffstat (limited to 'konami/css/main.css')
| -rw-r--r-- | konami/css/main.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/konami/css/main.css b/konami/css/main.css index 8e34ca6..bb313c6 100644 --- a/konami/css/main.css +++ b/konami/css/main.css @@ -54,12 +54,18 @@ body { } main { - /* margin: auto; ** This is only needed for mobile */ font-size: 6vh; line-height: 1.2; max-width: 75vh; } +@media(max-width: 768px) { + main { + margin: auto; + width: 100%; + } +} + .links a { background-color: yellow; } @@ -95,6 +101,12 @@ main { justify-content: center; } +@media(max-width: 768px) { + .navigation-bar { + display: none; + } +} + .nav { overflow: hidden; max-width: 100%; @@ -256,4 +268,10 @@ p { font-weight: bold; margin: 50vh 0 0 0; font-family: sans-serif; +} + +@media(max-width: 768px) { + .ee { + display: none; + } }
\ No newline at end of file |