Skip to content

Commit d686dcd

Browse files
committed
chore: update btc
1 parent 72d6625 commit d686dcd

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

_includes/footer.html

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
<!-- The Footer -->
2+
<!-- Bitcoin address bar -->
3+
<style>
4+
:root {
5+
--btc-bg: #1a1d23;
6+
--btc-text: #f7931e;
7+
--btc-secondary: #6e7681;
8+
--btc-border: #2a2e35;
9+
--btc-shadow: rgba(0,0,0,0.1);
10+
}
11+
12+
[data-mode="light"] {
13+
--btc-bg: #ffffff;
14+
--btc-text: #f7931e;
15+
--btc-secondary: #6c757d;
16+
--btc-border: #e9ecef;
17+
--btc-shadow: rgba(0,0,0,0.15);
18+
}
19+
</style>
20+
221
<center>
3-
<span style="display:inline-flex; align-items:center; background:#1a1d23; color:#f7931e; padding:6px 14px; border-radius:25px; font-family:system-ui, -apple-system, sans-serif; font-size:11px; border:1px solid #2a2e35; box-shadow:0 2px 10px rgba(0,0,0,0.1); gap:8px;">
22+
<span style="display:inline-flex; align-items:center; background:var(--btc-bg); color:var(--btc-text); padding:6px 14px; border-radius:25px; font-family:system-ui, -apple-system, sans-serif; font-size:11px; border:1px solid var(--btc-border); box-shadow:0 2px 10px var(--btc-shadow); gap:8px;">
423
<span style="font-size:12px; opacity:0.9;"></span>
5-
<span style="color:#6e7681; font-size:10px; font-weight:500;">bc1q8dnj5cmzzc7nhn4adttcpycxxk4f2f3rknq6t4</span>
24+
<span style="color:var(--btc-secondary); font-size:10px; font-weight:500;">bc1q8dnj5cmzzc7nhn4adttcpycxxk4f2f3rknq6t4</span>
625
<button onclick="navigator.clipboard.writeText('bc1q8dnj5cmzzc7nhn4adttcpycxxk4f2f3rknq6t4')"
7-
style="background:none; color:#f7931e; border:1px solid #f7931e; padding:2px 8px; border-radius:12px; font-size:9px; cursor:pointer; transition:all 0.2s ease; font-weight:500;"
8-
onmouseover="this.style.background='#f7931e'; this.style.color='#000'"
9-
onmouseout="this.style.background='none'; this.style.color='#f7931e'">Copy</button>
26+
style="background:none; color:var(--btc-text); border:1px solid var(--btc-text); padding:2px 8px; border-radius:12px; font-size:9px; cursor:pointer; transition:all 0.2s ease; font-weight:500;"
27+
onmouseover="this.style.background='var(--btc-text)'; this.style.color='var(--btc-bg)'"
28+
onmouseout="this.style.background='none'; this.style.color='var(--btc-text)'">Copy</button>
1029
</span>
1130
</center>
31+
<!-- end bitcoin -->
32+
1233
<footer
1334
aria-label="Site Info"
1435
class="

0 commit comments

Comments
 (0)