-
Notifications
You must be signed in to change notification settings - Fork 0
/
purchase-btn.html
42 lines (37 loc) · 1.2 KB
/
purchase-btn.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
<html>
<head>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<!-- Font awesome logos -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<style>
.purchase-btn {
float: left;
padding: 1rem;
background-color: grey;
border-radius: 2rem 2rem 2rem 2rem;
color: white;
text-decoration: none;
font-family: 'Roboto Mono', monospace;
}
.purchase-btn:hover {
background-color: black;
cursor: pointer;
text-shadow:
-0.1px -0.1px 0 #fff,
0.1px -0.1px 0 #fff,
-0.1px 0.1px 0 #fff,
0.1px 0.1px 0 #fff;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
</style>
<body style="width: 100%; margin: 0;">
<a class="purchase-btn" href="https://chrismuntean.gumroad.com/l/blueprint-grey?wanted=true" target="_blank">Purchase now! - $5.00</a>
</body>
</html>