From 390de5cc77ed670d2983b22a770c85ef667b8ff1 Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Sat, 27 May 2023 15:32:46 +0200 Subject: [PATCH] meta: Added current progress --- .prettierrc | 4 ++ src/badges/archlinux.png | Bin 0 -> 837 bytes src/index.html | 81 +++++++++++++++++++++++++++++++++++++++ src/style.css | 55 ++++++++++++++++++++++++++ update.sh | 21 ++++++++++ 5 files changed, 161 insertions(+) create mode 100644 .prettierrc create mode 100644 src/badges/archlinux.png create mode 100644 src/index.html create mode 100644 src/style.css create mode 100644 update.sh 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 0000000000000000000000000000000000000000..670d69c6b0c345e615fa64c7d683a2cdd920a68a GIT binary patch literal 837 zcmV-L1G@Z)P)WFU8GbZ8({Xk{QrNlj4iWF>9@00OB=L_t(o!|j;eOH*MS z$3N#qUCn9gW{@^rrI?xG90Thn%b+`nV0c^5yz)OVyxD)?)&7MAfgnY&s30W7%23JI zT+N!SoX2I`eB0^5X7jig-^ieSug>#(p5NhlK74=Y{LT@aPNzyv2bK)rcDr*V4xp~C zt}TE7-L8HBN{Uagv>XLMS0Gbbd=gOG<$^$fAqjU2h( z5>o}wnai*>nz!Kr$g)Vw<+IdSOhkW%+1yyqSYmxW9Vuhlc&7EKu2ae3aAb^W=hMyY zH76s${5*+Ti;1E_9jdAlUWwtG521vk$dZV?$&9H?&*;z-lVjY$K%<~aX1`!Jf6Lka8aR->dI0?Q6LZu<9#*Bq7uQNFW{=p!ucvACSw^h zI7cO P00000NkvXXu0mjfNOpau literal 0 HcmV?d00001 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"