commit 390de5cc77ed670d2983b22a770c85ef667b8ff1 Author: Yuki Joou Date: Sat May 27 15:32:46 2023 +0200 meta: Added current progress diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..8dc2e72 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "tabWidth": 4, + "useTabs": true +} diff --git a/src/badges/archlinux.png b/src/badges/archlinux.png new file mode 100644 index 0000000..670d69c Binary files /dev/null and b/src/badges/archlinux.png differ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..4ecd7e2 --- /dev/null +++ b/src/index.html @@ -0,0 +1,81 @@ + + + + + + + + + + + yukijoou's internet homepage :3 + + + +
+

yukijoou's homepage

+

雪女王

+

+ i like posting silly things on the web! you can find a bunch of + it here! +

+
+ +
+

about me

+

+ i'm an autistic gay trans girl who likes computers. i like old + technologies and other stuff that doesn't work properly. +
+ i'm the webmistress that runs + kemonomimi.gay, with the + help of my amazing friends :3 +

+

+ btw, i use + + archlinux + on my computers. just thought you should know. (i am not + flexing) (it's just for your information) +

+ +

talk to me. i dare u.

+

+ i'm available on matrix: @yukijoou:catgirl.cloud +
+ more means of communications are comming soon, stay tuned!! (i + know you are excited) +

+ +

silly projects

+

more coming soon here!

+

+ i'm working on getting more services on + kemonomimi.gay, and + bringing some web things i've already done to this website! +

+
+ + + + diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..c5a4d9b --- /dev/null +++ b/src/style.css @@ -0,0 +1,55 @@ +* { + font-family: "sans-serif" sans; +} + +a { + color: purple; +} + +a:visited { + color: purple; +} + +body { + background-color: lightblue; + display: flex; + flex-direction: column; + align-items: center; +} + +header { + max-width: 30rem; + padding: 1rem; + margin: 0 0 2rem 0; + + background-color: violet; + box-shadow: 5px 5px black; + + text-align: center; +} + +header h1 { + color: black; + font-weight: 100; + margin: 1rem 0 0 0; +} + +header .subtitle { + margin: 0; + text-decoration: underline; +} + +main { + max-width: 50rem; + padding: 1rem; + + background-color: pink; + box-shadow: 5px 5px black; +} + +footer { + max-width: 30rem; + margin-top: 2rem; + + text-align: justify; +} diff --git a/update.sh b/update.sh new file mode 100644 index 0000000..4f90bff --- /dev/null +++ b/update.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# A script for updating the website +# Made by sugary :3 +# Adapted by yukijoou + +set -e + +WEBSITE_NAME="yukijoou.kemonomimi.gay" +WEBSITES_PATH="$HOME/www" + +BACKUP_DIR=$(mktemp -d) + +cp -rf "$WEBSITES_PATH" $BACKUP_DIR/$WEBSITE_NAME.bak +echo "Made backup at $BACKUP_DIR" + +rm -rf "$WEBSITES_PATH" +mkdir -p "$WEBSITES_PATH" +cp -rf src/* "$WEBSITES_PATH" + +echo "Installed $WEBSITE_NAME at $WEBSITES_PATH"