Initial commit
This commit is contained in:
50
index.html
Normal file
50
index.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Nettika</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">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<figure id="pfp">
|
||||
<picture>
|
||||
<img src="pfp.jpg" alt="Nettika">
|
||||
</picture>
|
||||
<figcaption>Nettika</figcaption>
|
||||
</figure>
|
||||
<p>📍 Seattle, US</p>
|
||||
<p>he/him • grey-ro bi • serval 🐆 • software engineer</p>
|
||||
<menu id="links">
|
||||
<li>
|
||||
<a href="https://twitter.com/nettika_cat">@nettika_cat on Twitter</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.tiktok.com/@nettika_cat">nettika_cat on TikTok</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.reddit.com/user/nettika_cat">nettika_cat on Reddit</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>@nettika#0001 on Discord</a>
|
||||
</li>
|
||||
<li>
|
||||
<a>@nettika_cat on Telegram</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/nettika-cat">nettika-cat on GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.twitch.tv/nettika_cat">nettika_cat on Twitch</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.furaffinity.net/user/nettika/">nettika on FurAffinity</a>
|
||||
</li>
|
||||
</menu>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
79
main.css
Normal file
79
main.css
Normal file
@@ -0,0 +1,79 @@
|
||||
:root {
|
||||
--foreground-color: #000;
|
||||
--background-color: #a278c4;
|
||||
--accent-color: #00cf9b;
|
||||
--accent-color-dark: #00a87d;
|
||||
}
|
||||
|
||||
* {
|
||||
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: 40rem;
|
||||
padding: 1.2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#pfp {
|
||||
width: 8rem;
|
||||
margin: 0 auto 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#pfp > picture > img {
|
||||
width: 100%;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
#pfp > figcaption {
|
||||
margin-top: 0.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
list-style: none;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
#links > li {
|
||||
width: 100%;
|
||||
color: var(--foreground-color);
|
||||
background-color: var(--accent-color);
|
||||
text-align: center;
|
||||
box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.125);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#links > li:hover {
|
||||
background-color: var(--accent-color-dark);
|
||||
}
|
||||
|
||||
#links > li > a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 1rem 2rem;
|
||||
}
|
Reference in New Issue
Block a user