copay/popup.html

33 lines
863 B
HTML
Raw Normal View History

2014-05-14 07:27:18 -07:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Copay</title>
2014-05-14 13:19:04 -07:00
<style>
body { background-color: #2C3E50; }
a {
-webkit-border-radius: 5px;
2014-05-16 13:13:55 -07:00
-moz-border-radius: 5px;
2014-05-14 13:19:04 -07:00
border-radius: 5px;
background-color: #008cba;
color: #fff;
display: block;
font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
2014-05-16 13:13:55 -07:00
margin: 20px auto;
2014-05-14 13:19:04 -07:00
opacity: .8;
outline: none;
padding: 10px;
text-decoration: none;
text-align: center;
width: 200px;
}
a:hover { opacity: 1; }
</style>
2014-05-14 07:27:18 -07:00
</head>
<body>
2014-08-01 05:49:03 -07:00
<a href="index.html" target="_blank">Open wallet</a>
<a href="index.html#!/settings" target="_blank">Settings</a>
2014-05-14 07:27:18 -07:00
</body>
</html>