bemarket/public/metamask.html
2022-05-26 11:12:26 +08:00

95 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>MetaMask</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no, email=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<style>
.container {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.container h1 {
text-transform: uppercase;
font-size: 32px;
}
@media screen and (orientation: portrait) {
.container h1 {
margin-top: 80px;
margin-bottom: 20px;
}
.metamask img {
width: 60vw;
}
.download-links {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
.download-links a img {
width: 60vw;
}
.login-tip {
width: 90%;
margin-top: 50px;
margin-bottom: 30px;
font-size: 16px;
}
}
@media screen and (orientation: landscape) {
.metamask img {
width: 25vw;
}
.download-links {
width: 100vw;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.download-links a img {
width: 25vw;
}
.login-tip {
margin: 30px auto;
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Download</h1>
<div class="metamask"><img src="assets/images/MetaMask.png" alt="metamask"></div>
<p class="login-tip">
Please login again after installation is complete.
</p>
<div class="download-links">
<a href="https://github.com/MetaMask/metamask-mobile/releases/download/v5.1.1/app-release.apk">
<img src="assets/images/apk_download.png" alt="github">
</a>
<a href="https://play.google.com/store/apps/details?id=io.metamask">
<img src="assets/images/googleplay.png" alt="googleplay">
</a>
</div>
</div>
</body>
</html>