diff options
| author | s1nical <[email protected]> | 2019-08-09 23:47:00 -0700 |
|---|---|---|
| committer | s1nical <[email protected]> | 2019-08-09 23:47:00 -0700 |
| commit | f7ada46007e0a23fe0d7665d07f48532070f2f21 (patch) | |
| tree | f5084721854a795ace2fe0f369abc6ca48371a72 /404/alternate/css | |
| parent | Merge branch 'master' of https://github.com/s1nical/about-me (diff) | |
| download | s1n.pw-admin-f7ada46007e0a23fe0d7665d07f48532070f2f21.tar.xz s1n.pw-admin-f7ada46007e0a23fe0d7665d07f48532070f2f21.zip | |
alternate 404 for mobile, desktop pages redirect to mobile
Diffstat (limited to '404/alternate/css')
| -rw-r--r-- | 404/alternate/css/main.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/404/alternate/css/main.css b/404/alternate/css/main.css new file mode 100644 index 0000000..8ed83fa --- /dev/null +++ b/404/alternate/css/main.css @@ -0,0 +1,34 @@ +body{font-family:sans-serif;font-weight:600} + +a{color:#000} +a:hover{color:#d3d3d3} + +.flexbox { + width:95vw; + height:95vh; + display:flex; + align-items:center; + justify-content:center; +} + +.content { + width:auto; + height:auto; + max-width:968px; + transition:0.33s ease +} + +.flexbox:after{ + content:"404"; + position:absolute; + opacity:.1; + z-index:-1; + font-size:24rem; + transition:0.33s ease +} + +@media(max-width:648px){ + .flexbox:after{ + font-size:12em + } +}
\ No newline at end of file |