Add files via upload

This commit is contained in:
Gen 2024-01-27 20:43:36 -08:00 committed by GitHub
commit e4d23b97c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 119 additions and 0 deletions

BIN
assets/DSCF7233.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8 MiB

BIN
assets/discord.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

BIN
assets/gmail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/insta.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

57
index.html Normal file
View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="wilih=device-wilih, initial-scale=1.0">
<meta property="og:title" content="Gen's Website" />
<meta property="og:description" content="A little bit of information about me :3" />
<meta property="og:type" content="website" />
<meta property="og:image" content="assets/DSCF2227.png" />
<meta property="og:url" content="https://www.genshibe.gay" />
<title>Gen's Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<br>
<br>
<div class="container">
<div class="divs">
<h1>Hi, I'm Gen</h1>
<h2>and I use any pronouns :3</h2>
<div class="meow"></div>
<ul>
<li id="h">I'm a 19 year old...</li>
<br>
<li id ="e">Transit enthusiast &#128653;</li>
<li id="e">Photographer &#128248;</li>
<li id="e">Student &#129489;&#8205;&#127891;</li>
<li id="e">Canadian &#127464;&#127462; </li>
<li id="e">Hong Konger &#127469;&#127472;</li>
<li id="e">Maintainer at <a class="fuck" href="https://github.com/catppuccin/userstyles" target="_blank">Catppuccin</a></li>
</ul>
</p>
<br>
<br>
<h4>Contact me via:</h4>
<div class="meow"></div>
<br>
<div class="button-container">
<div class="batton">
<button class="button"><a href="https://discord.com/users/217892728875253760" target="_blank">Discord</a></button>
<button class="button"><a href="https://www.instagram.com/spotter_gen/" target="_blank">Instagram</a></button>
<button class="button"><a href="mailto:gen@genshibe.gay" target="_blank">Email</a></button>
</div>
<br>
<footer>
<i>
Fun fact: you see the background photo? i took that photo :3 | Last Updated: <i id=woof></i>
</i>
</footer>
</div>
<script> let text = document.lastModified;
document.getElementById("woof").innerHTML = text </script>
</main>
</body>
</html>

62
style.css Normal file
View file

@ -0,0 +1,62 @@
* {box-sizing: border-box;}
body {background-image: url("assets/DSCF7233.png"); background-size: cover; background-repeat: no-repeat;
background-position: center; background-attachment: fixed; background-color: #111111; color: #4c4f69;
font-family: "Polestar Unica77 TT", Arial, sans-serif;}
.container {display: block;
margin-left: auto; margin-right: auto; width:75%; grid-gap: 20px; backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);}
.divs {border: 2px solid #fe640b; border-radius: 10px; padding: 10px; }
h1 {margin-bottom: 2px; margin-top: 2px; font-size: 4em; color:#313244; text-align: center;}
h2 {margin-top: 2px; margin-bottom: 2px; font-size: 3em; color:#313244;text-align: center;}
h3 {margin-bottom: 10px; margin-top: 3px; font-size: 1.75em; color:#fab387;text-align: center;}
footer {text-align: center; border-top:2px; padding-top: 5px; padding-bottom: 0px;
margin-left: auto; margin-right: auto; width: 80%; color: #cdd6f4}
h4 {margin-top: 2px; margin-bottom: 2px; font-size: 2.5em; color:#fab387;text-align: center;}
p {font-size: 2em; margin: 10px; text-align: center; color: #cdd6f4}
#h {font-size: 2.5em; text-align: center; list-style-type: none; color: #cdd6f4; font-weight: bold;}
#e {font-size: 2em; text-align: center; list-style-type: none; color: #cdd6f4; margin-bottom: 1.5px;}
.shit {display: inline-block; padding: 5px; border: 1px solid #fab387; padding-right 5px;
text-decoration: none; color: #cdd6f4;border-radius: 5px;
font-weight: bold; text-align: center; font-size: 1.25em; }
.button {padding: 5px; border: 1px solid #fab387;
text-decoration: none; color: #cdd6f4; background-color: #1e1e2e; border-radius: 5px;
font-weight: bold; text-align: center; font-size: 1.25em; margin:5px; line-height:1.75em }
.button:hover {background-color: #fab387; color: #04a5e5;}
a {color: #74c7ec}
a:hover {color: #04a5e5}
a:visited {color: #cba6f7}
.batton {
display: grid;
width: 25%;
margin-right: auto;
margin-left: auto ;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
justify-content: center;
align-items: center;
padding-bottom: 1px;
}
.meow {height: 2px; width: 80%; background-color: #f5a97f; margin-left: auto; margin-right: auto; margin-bottom: 10px; margin-top: 10px;}
@media screen and (max-width:750px) {
#h {padding: 0px; margin-left: 0px}
#e {padding: 0px; margin-left: 0px}
.button-container {display: flex;}
}