Make the cryptocurrency addresses stand out
This commit is contained in:
parent
051824cc5b
commit
422db1bf64
3 changed files with 52 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
@ -73,6 +78,12 @@
|
|||
<p>I'm a programmer, (very new) artist, and (very new) youtuber. I've dabbled in automation, apps, games, plugins, websites, and more! </p>
|
||||
<h1>Where can I find your work?</h1>
|
||||
<p>
|
||||
<div class="fancy-card-container">
|
||||
<div class="fancy-card-outline"></div>
|
||||
<div class="fancy-card-content">
|
||||
<h1>Portfolio</h1>
|
||||
</div>
|
||||
</div>
|
||||
You can find my work at
|
||||
<a href="https://github.com/Apachedrag427">Github</a>,
|
||||
<a href="https://git.apach.dev/apache">Forgejo</a>,
|
||||
|
@ -82,9 +93,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
26
public/portfolio.html
Normal 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>
|
Loading…
Reference in a new issue