initial commit
After Width: | Height: | Size: 191 KiB |
After Width: | Height: | Size: 2.3 MiB |
After Width: | Height: | Size: 934 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 161 KiB |
After Width: | Height: | Size: 315 B |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 20 KiB |
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="icon" href="/assets/icon.png">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="canonical" href="https://min.rip">
|
||||
|
||||
<meta name="darkreader-lock">
|
||||
|
||||
<title>min.rip</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="bg"></div>
|
||||
<div id="bordeur"></div>
|
||||
<main>
|
||||
<div id="floats">
|
||||
<img src="/assets/icon.png" alt="my avatar" id="icon">
|
||||
<div id="yapping">
|
||||
<h1>hi, world!</h1>
|
||||
<h2>i am minish</h2>
|
||||
<p>hi, i go by minish online. i enjoy programming & reverse engineering.</p>
|
||||
<ul>
|
||||
my current main projects are
|
||||
<span>
|
||||
<li>
|
||||
<a href="https://git.min.rip/min/breeze">breeze</a> -
|
||||
a simple, performant file upload server
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://git.min.rip/breeze/hls_convert">hls_convert</a> -
|
||||
easily download videos and fix embeds
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">uproot</a> -
|
||||
for the ultimate gaming in class enjoyers
|
||||
</li>
|
||||
</span>
|
||||
</ul>
|
||||
<ul class="interests">
|
||||
some stuff i like:
|
||||
<span class="interests">
|
||||
<li>omori <img src="/assets/interests/omori.png"></li>
|
||||
<li>deltarune <img src="/assets/interests/deltarune.png"></li>
|
||||
<li>inabakumori <img src="/assets/interests/inabakumori.png"></li>
|
||||
<li>cafe de touhou <img src="/assets/interests/cdth.png"></li>
|
||||
</span>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="cont">
|
||||
<hr>
|
||||
<div id="links">
|
||||
<a href="https://git.min.rip">
|
||||
<img src="/assets/links/gitea.png" alt="gitea"
|
||||
title="a lot of stuff here is privated. it might look kind of empty">
|
||||
</a>
|
||||
<a href="https://github.com">
|
||||
<img src="/assets/links/github.png" alt="github"
|
||||
title="i use my gitea more than my github, but there's some stuff here">
|
||||
</a>
|
||||
<a href="https://www.last.fm/user/minishc">
|
||||
<img src="/assets/links/lastfm.png" alt="last.fm" title="music i listen to">
|
||||
</a>
|
||||
<a href="https://steamcommunity.com/id/minishc1">
|
||||
<img src="/assets/links/steam.png" alt="steam" title="games i play">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,170 @@
|
|||
/** written by minish - 2024-03, mostly
|
||||
* probably don't reference this stylesheet
|
||||
* for literally anything, because i am
|
||||
* godawful at writing css lol..
|
||||
*/
|
||||
|
||||
/* :root {
|
||||
--text: #f1ecec;
|
||||
--bg: #170e0d;
|
||||
--primary: #d19e9b;
|
||||
--secondary: #7e312d;
|
||||
--accent: #d3625c;
|
||||
} */
|
||||
|
||||
:root {
|
||||
/* --accent: #3a3e41; */
|
||||
--accent-b: #C4B5A1;
|
||||
--accent: #908576;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
font-style: normal;
|
||||
font-optical-sizing: auto;
|
||||
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#bordeur {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% - calc(2px * 2));
|
||||
height: calc(100vh - calc(2px * 2));
|
||||
z-index: -97;
|
||||
|
||||
margin: 2px;
|
||||
|
||||
border: 2px solid var(--accent);
|
||||
}
|
||||
|
||||
#bg::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
z-index: -98;
|
||||
|
||||
backdrop-filter: blur(0px);
|
||||
}
|
||||
|
||||
#bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
z-index: -99;
|
||||
|
||||
transform: scale(1);
|
||||
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.53)), url(/assets/bg.png);
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
main {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
font-size: 10pt;
|
||||
line-height: 2em;
|
||||
|
||||
padding: 18px;
|
||||
padding-bottom: 14px;
|
||||
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
|
||||
|
||||
border: 2px solid var(--accent);
|
||||
|
||||
color: #fff;
|
||||
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
|
||||
a:link, a:visited, a:hover, a:active {
|
||||
color: var(--accent-b)
|
||||
}
|
||||
|
||||
main * {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
main h2 {
|
||||
font-size: medium;
|
||||
font-weight: lighter;
|
||||
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
#icon {
|
||||
float: right;
|
||||
position: relative;
|
||||
|
||||
/* make some space around it */
|
||||
margin-bottom: 6px;
|
||||
margin-left: 24px;
|
||||
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
}
|
||||
|
||||
#yapping {
|
||||
float: left;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-position: inside;
|
||||
|
||||
}
|
||||
|
||||
span.interests {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
li {
|
||||
/* move the bulletpoint 6px inward on itself */
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
.interests img {
|
||||
height: 1.75em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
main hr {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 12px;
|
||||
|
||||
border: 1px solid var(--accent);
|
||||
}
|
||||
|
||||
#links {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
#links img {
|
||||
height: 3.1em;
|
||||
}
|
||||
|
||||
#cont {
|
||||
/* This has to be here or the separator margin disappears. Dear god i have no idea what the hell i am doing. */
|
||||
padding-top: 1px;
|
||||
clear: both;
|
||||
}
|