Compare commits

...

2 commits

Author SHA1 Message Date
166597fcff
Remove temporary portfolio link 2025-05-06 09:39:11 -05:00
422db1bf64
Make the cryptocurrency addresses stand out 2025-05-01 21:02:46 -05:00
3 changed files with 46 additions and 4 deletions

View file

@ -82,4 +82,15 @@ a {
}
a:hover {
color: var(--rp-rose);
}
}
.fancy-card {
padding: 0.5rem;
.fancy-card-outline {
margin: -0.5rem;
}
.fancy-card-content {
background-color: var(--rp-overlay);
}
}

View file

@ -57,6 +57,11 @@
height: 50%;
background: linear-gradient(45deg, #0138a7, #c5187c);
}
.crypto {
color: var(--rp-gold);
text-shadow: 0 0 30px var(--rp-gold);
}
</style>
<title>Apache</title>
@ -82,9 +87,9 @@
<p>You can support me at my new <a href="https://ko-fi.com/apajer">Ko-fi</a>!</p>
<p>Or through</p>
<ul>
<li>XMR: 83iJKhbQ9HLJCxCwQELcHsZT1JTnWUxZ8TNgMiKMQeDLPNrLZDgtRRKYeP6t3G8r8m5v6qAXnCc49Wbsf7oTZKujUKvXmph</li>
<li>BTC: bc1q3cdrz975j8cn07we59x3ke9l53e3zw8hsys467</li>
<li>ETH: 0x7094eD7F9269f77c7444e1aa94e81D50290325DA</li>
<li>XMR: <span class="crypto">83iJKhbQ9HLJCxCwQELcHsZT1JTnWUxZ8TNgMiKMQeDLPNrLZDgtRRKYeP6t3G8r8m5v6qAXnCc49Wbsf7oTZKujUKvXmph</span></li>
<li>BTC: <span class="crypto">bc1q3cdrz975j8cn07we59x3ke9l53e3zw8hsys467</span></li>
<li>ETH: <span class="crypto">0x7094eD7F9269f77c7444e1aa94e81D50290325DA</span></li>
</ul>
</main>
</body>

26
public/portfolio.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="assets/style.css">
<style>
</style>
<title>Apache</title>
</head>
<body>
<header>
</header>
<main>
</main>
</body>
</html>