Initial commit

This commit is contained in:
2024-10-15 17:50:46 -07:00
commit dc3f946265
4 changed files with 67 additions and 0 deletions

32
index.html Normal file
View File

@@ -0,0 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ars Ocelli Custom Keychains</title>
<link rel="stylesheet" href="main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap" rel="stylesheet">
<script src="https://www.paypal.com/sdk/js?client-id=BAAbHq7qiJqHvCD09Z39sdLsfmlYKvWMs3SVo-y9hyH3j_xIJwPLTUYSiGhJ7Ww05Ru7aTCkGwq9oAONUw&components=hosted-buttons&enable-funding=venmo&currency=USD"></script>
</head>
<body>
<main>
<img style="width: 8rem; margin: 0 auto; text-align: center; border-radius: 50%; box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.25);" id="pfp" src="pfp.jpg" alt="Nettika">
<p style="font-size: 2rem; font-weight: bold;">Ars Ocelli</p>
<h1 style="font-size: 3.5rem;">Keychains</h1>
<img style="margin: 2rem 0; width:100%; border-radius: 1rem;" src="paw-keychains.jpg"/>
<p style="text-align: left;">PLA keychains. Ask to see the variations I'm carrying with me at BLFC. I have three designs: paw, axolotl, and crow.</p>
<p>Reach out to me on telegram, <a href="https://telegram.me/nettika_cat">@nettika_cat</a>, about making a custom paw keychain for your fursona!</p>
<div style="margin: auto 0;" id="paypal-container-FJ2FBS9USRKYL"></div>
</main>
<script>
paypal.HostedButtons({
hostedButtonId: "FJ2FBS9USRKYL",
}).render("#paypal-container-FJ2FBS9USRKYL")
</script>
</body>
</html>

35
main.css Normal file
View File

@@ -0,0 +1,35 @@
:root {
--foreground-color: #000;
--background-color: #a278c4;
--accent-color: #e0fdf6;
--accent-color-dark: #00a87d;
--link-color: #9d1250;
font-size: 22px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Oxanium", cursive;
color: var(--foreground-color);
background-color: var(--background-color);
}
main {
margin: 1rem auto;
max-width: 30rem;
padding: 1.2rem;
}
p {
margin: 1rem 0;
}
a {
color: var(--link-color);
text-decoration: none;
}

BIN
paw-keychains.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
pfp.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB