-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (94 loc) · 2.41 KB
/
index.html
File metadata and controls
106 lines (94 loc) · 2.41 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>George Mason</title>
<style>
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.card {
background: white;
border-radius: 10px;
padding: 2rem;
width: 100%;
max-width: 500px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.avatar {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 1rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
h1 {
margin: 0.5rem 0 0;
}
.bio {
color: #444;
margin-bottom: 1.5rem;
}
.donations-inline {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: auto;
gap: 1.5rem;
}
.donation {
display: flex;
flex-direction: column;
align-items: center;
font-family: monospace;
font-size: 0.85rem;
text-align: center;
max-width: 160px;
word-break: break-word;
}
.donation img {
width: 28px;
height: 28px;
margin-bottom: 0.5rem;
}
.donation a img {
width: 36px;
height: 36px;
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="card">
<img src="assets/behelit.jpg" alt="Behelit" class="avatar">
<h1>George Mason</h1>
<p class="bio">Father of 3 that loves working on development projects in my free time.</p>
<div class="donations-inline">
<div class="donation">
<img src="https://cdn.jsdelivr.net/gh/spothq/cryptocurrency-icons/svg/color/ltc.svg" alt="Litecoin">
<span>LNJ3kFSPMu95rpuGHMdbEgCyE15K1Wm5dP</span>
</div>
<div class="donation">
<a href="https://buymeacoffee.com/gmason" target="_blank" title="Buy Me a Coffee">
<img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="BuyMeACoffee">
</a>
</div>
<div class="donation">
<img src="https://cdn.jsdelivr.net/gh/spothq/cryptocurrency-icons/svg/color/btc.svg" alt="Bitcoin">
<span>bc1qc9a4qfu7dl70yhjt4peldq32dzs6ypujve2n2q</span>
</div>
</div>
</div>
</body>
</html>