diff options
Diffstat (limited to 'app/404.html')
-rw-r--r-- | app/404.html | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/app/404.html b/app/404.html index 0dbab69a7..f66723ad6 100644 --- a/app/404.html +++ b/app/404.html @@ -17,12 +17,36 @@ width: 100%; height: 100%; } + .app{ + position: relative; + width: 100%; + height: auto; + overflow: hidden; + } img{ display: block; + width: 100%; + height: auto; + } + h2{ + display: block; + width: 100%; + overflow: hidden; + position: absolute; + bottom: 20%; + left: 0; + color: #1b243d; + text-align: center; + } + h2 > a{ + color: #1b243d; } </style> </head> <body> - <img src="./images/404.png" alt=""> + <div class="app"> + <img src="./images/404.png" alt=""> + <h2>Powered by <a href="https://www.portal.network/">Portal Network</a></h2> + </div> </body> </html>
\ No newline at end of file |