-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (78 loc) · 3.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="materialize.min.css" media="screen,projection" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
background-color: antiquewhite;
}
.row {
margin: 20px;
}
.row .card img {
width: 180px;
height: 180px;
}
.card img.activator {
left: 33%;
}
</style>
</head>
<body>
<nav>
<div class="nav-wrapper blue-grey darken-4">
<a href="#" class="brand-logo center">Zcash Serverless Store (Unofficial)</a>
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li><a
href="https://github.com/namelessperson0/zcash-ecommerce/issues/new?assignees=&labels=&template=add-new-product.md&title=Add+new+Product">
<h5>Add product</h5>
</a> </li>
</ul>
</div>
</nav>
<div class="row">
<div class="col s12 m6 offset-m3">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="images/zcashMask.jpeg">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Face Mask with Zcash Logo (Unofficial)<i
class="material-icons right">more_vert</i></span>
<p><a href="#">Buy</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Face Mask with Zcash Logo<i
class="material-icons right">close</i></span>
<p> Amount to send: Send 30 USD worth ZEC. 10 USD worth SEC extra if if shipping address is outside
US.</p>
<p> Send to z-address zs15t88dfdywds0kraxcmxfl7kzu2sug8xsm3vwvvw75kq2nwu97qkvyxdy29a46enn678hqualqjh
</p>
<p> Send your shipping address in memo</p>
</div>
</div>
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Software development consultation<i
class="material-icons right">more_vert</i></span>
<p><a href="#">Buy</a></p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Software development consultation<i
class="material-icons right">close</i></span>
<p> Amount to send: Send 50 USD worth ZEC for initial consultation.</p>
<p> Send to z-address zs15t88dfdywds0kraxcmxfl7kzu2sug8xsm3vwvvw75kq2nwu97qkvyxdy29a46enn678hqualqjh
</p>
<p> Send your contact info in memo</p>
</div>
</div>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="materialize.min.js"></script>
</body>
</html>