-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="images/dollar.png" type="image/png" sizes="16x16">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
<title>Donate</title>
</head>
<style>
body {
background-image: url(images/donate-img.jpeg);
background-size: cover;
color: rgb(226, 133, 46);
}
h2 {
font-size: 50px;
font-family: 'Poppins', sans-serif;
text-transform: capitalize;
letter-spacing: 1px;
margin-top: 100px;
margin-bottom: 20px;
}
.wrapper {
margin: 150px auto;
text-align: center;
width: 100%;
position: relative;
}
.btn3 {
padding: 15px 100px;
margin: 80px 10px;
color: rgb(255, 255, 255);
border: 2px solid rgb(197, 125, 31);
border-radius: 5px;
font-family: 'Poppins', sans-serif;
text-transform: uppercase;
text-align: center;
position: relative;
text-decoration: none;
display: inline-block;
}
.btn3::before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
z-index: -1;
background-color: #000;
-webkit-transform: scaleX(0.3);
transform: scaleX(0.3);
opacity: 0;
transition: all 0.3s;
}
.btn3:hover::before {
opacity: 1;
background-color: #c02136;
border-radius: 5px;
-webkit-transform: scaleX(1);
transform: scaleX(1);
transition: -webkit-transform 0.8s cubic-bezier(0.08, 0.35, 0.13, 1.02),
opacity 0.4s;
transition: transform 0.8s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
}
</style>
<body>
<div class="wrapper">
<h2>Smooth and Easy Payment integration <br> With Amos Adagboyi </h2>
<a href="paymentPage.html" class="btn3">
PAY
</a>
</div>
</body>
</html>