diff options
| author | s1n <[email protected]> | 2019-10-23 20:49:24 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-23 20:49:24 -0700 |
| commit | 186c562564f40b33ef9c57fe382a6b63e0cbc48d (patch) | |
| tree | a3702ff8e56a4e73e764206f9560a9bd7021dc8a /404/css/main.css | |
| parent | accurate mobile detec (diff) | |
| download | s1n.pw-admin-186c562564f40b33ef9c57fe382a6b63e0cbc48d.tar.xz s1n.pw-admin-186c562564f40b33ef9c57fe382a6b63e0cbc48d.zip | |
make all mobile sites into media queries :)))
Diffstat (limited to '404/css/main.css')
| -rw-r--r-- | 404/css/main.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/404/css/main.css b/404/css/main.css index 5891d12..ad791a3 100644 --- a/404/css/main.css +++ b/404/css/main.css @@ -15,3 +15,21 @@ margin-bottom: 6px; opacity: 0.9; } + +@media(max-width: 768px) { + .navigation-bar { + display: none; + } + + .bio { + margin: auto; + width: 100%; + padding: 0; + } +} + +@media(min-width: 768px) { + .mobile { + display: none; + } +}
\ No newline at end of file |