commit 7a42c62cadd6cba20d901869e82d2b2becd286d0 Author: minish Date: Fri Mar 29 21:35:30 2024 -0400 initial commit diff --git a/assets/bg.png b/assets/bg.png new file mode 100644 index 0000000..e19d320 Binary files /dev/null and b/assets/bg.png differ diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000..d4a4060 Binary files /dev/null and b/assets/icon.png differ diff --git a/assets/interests/cdth.png b/assets/interests/cdth.png new file mode 100644 index 0000000..ec12916 Binary files /dev/null and b/assets/interests/cdth.png differ diff --git a/assets/interests/deltarune.png b/assets/interests/deltarune.png new file mode 100644 index 0000000..3849f8a Binary files /dev/null and b/assets/interests/deltarune.png differ diff --git a/assets/interests/inabakumori.png b/assets/interests/inabakumori.png new file mode 100644 index 0000000..9232e28 Binary files /dev/null and b/assets/interests/inabakumori.png differ diff --git a/assets/interests/omori.png b/assets/interests/omori.png new file mode 100644 index 0000000..88707c5 Binary files /dev/null and b/assets/interests/omori.png differ diff --git a/assets/links/gitea.png b/assets/links/gitea.png new file mode 100644 index 0000000..0e3956b Binary files /dev/null and b/assets/links/gitea.png differ diff --git a/assets/links/gitea2.png b/assets/links/gitea2.png new file mode 100644 index 0000000..70ac3f8 Binary files /dev/null and b/assets/links/gitea2.png differ diff --git a/assets/links/github.png b/assets/links/github.png new file mode 100644 index 0000000..b947665 Binary files /dev/null and b/assets/links/github.png differ diff --git a/assets/links/lastfm.png b/assets/links/lastfm.png new file mode 100644 index 0000000..b2466b1 Binary files /dev/null and b/assets/links/lastfm.png differ diff --git a/assets/links/steam.png b/assets/links/steam.png new file mode 100644 index 0000000..f6c9966 Binary files /dev/null and b/assets/links/steam.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..ab0c629 --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + + + + + + + min.rip + + + +
+
+
+
+ my avatar +
+

hi, world!

+

i am minish

+

hi, i go by minish online. i enjoy programming & reverse engineering.

+
    + my current main projects are + +
  • + breeze - + a simple, performant file upload server +
  • +
  • + hls_convert - + easily download videos and fix embeds +
  • +
  • + uproot - + for the ultimate gaming in class enjoyers +
  • +
    +
+
    + some stuff i like: + +
  • omori
  • +
  • deltarune
  • +
  • inabakumori
  • +
  • cafe de touhou
  • +
    +
+
+
+ +
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..0788e94 --- /dev/null +++ b/style.css @@ -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; +} \ No newline at end of file