aboutsummaryrefslogtreecommitdiffstats
path: root/app/404.html
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-07-05 02:05:16 +0800
committerGitHub <noreply@github.com>2018-07-05 02:05:16 +0800
commit68e1f22193dbba6c9ae3d6e4d22ee68244c05418 (patch)
tree4754c9e6ae476ecd7269b86775db3e8c0eae5011 /app/404.html
parent7d882fe491cd27bef3d2b9f5617ba2af39e15333 (diff)
parentf38dc03b27a457733315cbb16d59d0ea339505da (diff)
downloadtangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar.gz
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar.bz2
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar.lz
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar.xz
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.tar.zst
tangerine-wallet-browser-68e1f22193dbba6c9ae3d6e4d22ee68244c05418.zip
Merge pull request #4405 from PortalNetwork/portal-metamask
Integration ENS with IPFS
Diffstat (limited to 'app/404.html')
-rw-r--r--app/404.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/app/404.html b/app/404.html
new file mode 100644
index 000000000..8a6df9d7a
--- /dev/null
+++ b/app/404.html
@@ -0,0 +1,52 @@
+<html>
+<head>
+ <title>MetaMask</title>
+ <style>
+ *{
+ padding: 0;
+ margin: 0;
+ box-sizing: border-box;
+ }
+ img{
+ display: block;
+ }
+ html, body{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ 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>
+ <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>