From a64f5ae5dd8a781ee8235ebbd531a24ce9935dd1 Mon Sep 17 00:00:00 2001 From: mion <> Date: Thu, 26 Feb 2026 17:04:17 +0000 Subject: IHATE IT IHATE IT I HATE IT --- content/about_me.md | 2 +- content/index.md | 11 +++--- css/chan.css | 103 +++++++++++++++++++++++++++++++++++++++++++++++++ css/etc.css | 32 +++++++++++++++ css/moe.css | 25 ++++++++++++ css/simple.css | 9 +++++ css/style.css | 56 +++++++++++++++++++++++++++ css/style2.css | 51 ++++++++++++++++++++++++ make.sh | 2 +- makenew | Bin 15960 -> 0 bytes makenew.c | 6 --- stylesheets/chan.css | 103 ------------------------------------------------- stylesheets/etc.css | 32 --------------- stylesheets/moe.css | 25 ------------ stylesheets/simple.css | 9 ----- stylesheets/style.css | 56 --------------------------- stylesheets/style2.css | 51 ------------------------ template.html | 3 +- 18 files changed, 285 insertions(+), 291 deletions(-) create mode 100644 css/chan.css create mode 100644 css/etc.css create mode 100644 css/moe.css create mode 100644 css/simple.css create mode 100644 css/style.css create mode 100644 css/style2.css delete mode 100755 makenew delete mode 100644 makenew.c delete mode 100644 stylesheets/chan.css delete mode 100644 stylesheets/etc.css delete mode 100644 stylesheets/moe.css delete mode 100644 stylesheets/simple.css delete mode 100644 stylesheets/style.css delete mode 100644 stylesheets/style2.css diff --git a/content/about_me.md b/content/about_me.md index 4181467..6cbd197 100644 --- a/content/about_me.md +++ b/content/about_me.md @@ -24,7 +24,7 @@ Some facts about me that nobody cares about: * I'm not good at anything at all. -* ![](media/cda.jpg) +* !["Hehehe... I'm a yandere... I'm crazy, depressed, and autistic." I also never read SubaHibi.](media/cda.jpg) * I'm not a NEET. diff --git a/content/index.md b/content/index.md index 330ec42..1997a72 100644 --- a/content/index.md +++ b/content/index.md @@ -4,15 +4,14 @@ I'm quite boring, TOO BORING, but I like technology and other similar stuff. I c Not using HTTPS on this site is FULLY recommended to show your [ISP, transit providers and various government agencies](trace.php) how based you are. -I showcase my uninteresting and lame thoughts on stuff, check out the [page list](pages.html). +I showcase my uninteresting and lame thoughts on stuff, check out the [page list](pages.html), but in the mean time, I mostly add stuff on my [journal](journal.html). -[Here's some shit about me.](about_me.html) +[Here is some shit about me.](about_me.html) -My electronic mail address is [**shion**@pissmail.com](mailto:nobody) if you would like to talk to me. Please do. ^_^ +### Contact me -No PGP key because I'm not selling drugs. +My electronic mail address is [**shion**@pissmail.com](mailto:nobody) if you would like to talk to me. Please do. ^_^ -![](media/desu.gif) +No PGP key because I'm not selling drugs and I don't think your emails to me are worth encrypting. -This website is powered by DESU diff --git a/css/chan.css b/css/chan.css new file mode 100644 index 0000000..5e0422e --- /dev/null +++ b/css/chan.css @@ -0,0 +1,103 @@ +body { + background: #ffe; + color: #800000; + font-family: serif; + font-size: 16px; +} +div.title h1 { + font-size: 24px; +} +div.title p { + font-size: 10px; +} +a:link, a:visited, .intro a.email span.name { + color: #0000ff; +} +a:link:hover { + color: #d00; +} +a.post_no { + color: #800000; +} +div.post.reply { + background: #f0e0d6; + border-color: #d9bfb7; +} +div.post.reply.highlighted { + background: #f0c0b0; + border-color: #d9bfb7; +} +div.post.reply div.body a { + color: navy; +} +.intro span.subject { + color: #d00; +} +form table tr th { + background: #EA8; +} +div.ban h2 { + background: #FCA; + color: inherit; +} +div.ban { + border-color: #800; +} +div.ban p { + color: black; +} +div.pages { + padding: 7px 5px; + color: maroon; + font-size: 12pt; + + background: none; + border-width: 1px; + border-style: inset; + +} +div.pages a.selected { + color: #800; +} +hr { + border-width: 1px; + border-style: inset; +} +div.boardlist { + color: #B86; +} +div.boardlist a { + color: #800; +} +unimportant, .unimportant * { + font-size: 13px; +} +table.modlog tr th { + background: #EA8; +} + +.desktop-style div.boardlist:nth-child(1) { + text-shadow: #fff 1px 1px 1px, #fff -1px -1px 1px; +} + + +.desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist:nth-child(1).cb-menu { + background-color: rgba(90%, 90%, 90%, 0.55); +} + +/* options.js */ +#options_div, #alert_div { + background: rgb(240, 224, 214); +} +.options_tab_icon { + border: 1px solid transparent; + border-width: 0px 1px 1px 0px; +} +.options_tab_icon:hover { + border-color: #d9bfb7; + border-width: 0px 1px 1px 0px; +} +.options_tab_icon.active { + border-color: #d9bfb7; + border-width: 1px 0px 0px 1px; +} \ No newline at end of file diff --git a/css/etc.css b/css/etc.css new file mode 100644 index 0000000..768f657 --- /dev/null +++ b/css/etc.css @@ -0,0 +1,32 @@ +span.quote { + color: #789922; +} + +@keyframes rainbow { + 0% {color: red} + 33% {color: lime} + 66% {color: blue} + 100% {color: red} +} + +.visual { + background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); + background-clip: text; + color: transparent; + /* animation: rainbow 1s linear infinite; */ +} + +img { + max-width: 100%; + height: auto; +} + +#stylechooser { + float: right; +} + +li p { + margin: 0; + padding-top: 2px; + padding-bottom: 2px; +} diff --git a/css/moe.css b/css/moe.css new file mode 100644 index 0000000..054866a --- /dev/null +++ b/css/moe.css @@ -0,0 +1,25 @@ + +body { + max-width: 960px; + margin-left: auto; + margin-right: auto; + background-image: url(media/moetile.png); + background-color: #ffb5cd; + color: purple; + font-family: "MS PGothic", "Mona", "Monapo", "IPAMonaPGothic", "IPAPGothic", "saitamaar_light", "submona", "times"; +} + +main { + background: linear-gradient(120deg, #ffb5cd, #ff74a0); + border: 1px purple solid; + padding: 10px; +} + + +html::after { + position: fixed !important; + content: url(media/nano.webp); + bottom: -5px !important; + right: 10px !important; + z-index: -1; +} diff --git a/css/simple.css b/css/simple.css new file mode 100644 index 0000000..88902a8 --- /dev/null +++ b/css/simple.css @@ -0,0 +1,9 @@ +html { + color-scheme: light dark; +} + +body { + max-width: 960px; + margin-left: auto; + margin-right: auto; +} \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..c4bd18f --- /dev/null +++ b/css/style.css @@ -0,0 +1,56 @@ +body +{ + background: #111111; + color: #fc6c8e; + max-width: 960px; + margin-left: auto; + margin-right: auto; + font-family: "noto sans mono", monospace; + font-size: 12pt; +} + +a { + color: #ff3a8d; + font-weight: bold; +} + +a:hover { + color: purple; +} + +figcaption { + display: none; +} + +.box { + display: inline-block; +} + +.boxes { + display: flex; +} + +hr { + border: #202020 solid 1px; +} + +table +{ + border-collapse: collapse; +} + +table td, th +{ + border: 1px solid #202020; + padding: 4px; +} + +/* +body::after { + position: fixed !important; + content: url(); + top: 0px !important; + right: 0 !important; + z-index:-1; + +} */ diff --git a/css/style2.css b/css/style2.css new file mode 100644 index 0000000..fbed7ef --- /dev/null +++ b/css/style2.css @@ -0,0 +1,51 @@ +body +{ + overflow-x: hidden; + max-width: 960px; + margin-left: auto; + margin-right: auto; +} + +li p { + margin: 0; +} + +img { + max-width: 100%; + height: auto; +} +@keyframes rainbow { + 0% {color: red} + 33% {color: lime} + 66% {color: blue} + 100% {color: red} +} +.visual { + background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); + background-clip: text; + color: transparent; + /* animation: rainbow 1s linear infinite; */ +} + +.content { + /* padding-left: 3%; */ +} + +.box { + display: inline-block; +} + +.boxes { + display: flex; +} + + +/* +body::after { + position: fixed !important; + content: url(); + top: 0px !important; + right: 0 !important; + z-index:-1; + +} */ diff --git a/make.sh b/make.sh index 50e559d..87ba81b 100755 --- a/make.sh +++ b/make.sh @@ -4,7 +4,7 @@ rm -r html mkdir html cp -r media html -cp stylesheets/*.css html +cp css/*.css html cp *.php html cp *.js html # cp favicon.ico html diff --git a/makenew b/makenew deleted file mode 100755 index 0c2df4b..0000000 Binary files a/makenew and /dev/null differ diff --git a/makenew.c b/makenew.c deleted file mode 100644 index 6468caa..0000000 --- a/makenew.c +++ /dev/null @@ -1,6 +0,0 @@ -#include - -int main(void) { - system("./make.sh"); - return 0; -} \ No newline at end of file diff --git a/stylesheets/chan.css b/stylesheets/chan.css deleted file mode 100644 index 5e0422e..0000000 --- a/stylesheets/chan.css +++ /dev/null @@ -1,103 +0,0 @@ -body { - background: #ffe; - color: #800000; - font-family: serif; - font-size: 16px; -} -div.title h1 { - font-size: 24px; -} -div.title p { - font-size: 10px; -} -a:link, a:visited, .intro a.email span.name { - color: #0000ff; -} -a:link:hover { - color: #d00; -} -a.post_no { - color: #800000; -} -div.post.reply { - background: #f0e0d6; - border-color: #d9bfb7; -} -div.post.reply.highlighted { - background: #f0c0b0; - border-color: #d9bfb7; -} -div.post.reply div.body a { - color: navy; -} -.intro span.subject { - color: #d00; -} -form table tr th { - background: #EA8; -} -div.ban h2 { - background: #FCA; - color: inherit; -} -div.ban { - border-color: #800; -} -div.ban p { - color: black; -} -div.pages { - padding: 7px 5px; - color: maroon; - font-size: 12pt; - - background: none; - border-width: 1px; - border-style: inset; - -} -div.pages a.selected { - color: #800; -} -hr { - border-width: 1px; - border-style: inset; -} -div.boardlist { - color: #B86; -} -div.boardlist a { - color: #800; -} -unimportant, .unimportant * { - font-size: 13px; -} -table.modlog tr th { - background: #EA8; -} - -.desktop-style div.boardlist:nth-child(1) { - text-shadow: #fff 1px 1px 1px, #fff -1px -1px 1px; -} - - -.desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist:nth-child(1).cb-menu { - background-color: rgba(90%, 90%, 90%, 0.55); -} - -/* options.js */ -#options_div, #alert_div { - background: rgb(240, 224, 214); -} -.options_tab_icon { - border: 1px solid transparent; - border-width: 0px 1px 1px 0px; -} -.options_tab_icon:hover { - border-color: #d9bfb7; - border-width: 0px 1px 1px 0px; -} -.options_tab_icon.active { - border-color: #d9bfb7; - border-width: 1px 0px 0px 1px; -} \ No newline at end of file diff --git a/stylesheets/etc.css b/stylesheets/etc.css deleted file mode 100644 index 768f657..0000000 --- a/stylesheets/etc.css +++ /dev/null @@ -1,32 +0,0 @@ -span.quote { - color: #789922; -} - -@keyframes rainbow { - 0% {color: red} - 33% {color: lime} - 66% {color: blue} - 100% {color: red} -} - -.visual { - background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); - background-clip: text; - color: transparent; - /* animation: rainbow 1s linear infinite; */ -} - -img { - max-width: 100%; - height: auto; -} - -#stylechooser { - float: right; -} - -li p { - margin: 0; - padding-top: 2px; - padding-bottom: 2px; -} diff --git a/stylesheets/moe.css b/stylesheets/moe.css deleted file mode 100644 index 054866a..0000000 --- a/stylesheets/moe.css +++ /dev/null @@ -1,25 +0,0 @@ - -body { - max-width: 960px; - margin-left: auto; - margin-right: auto; - background-image: url(media/moetile.png); - background-color: #ffb5cd; - color: purple; - font-family: "MS PGothic", "Mona", "Monapo", "IPAMonaPGothic", "IPAPGothic", "saitamaar_light", "submona", "times"; -} - -main { - background: linear-gradient(120deg, #ffb5cd, #ff74a0); - border: 1px purple solid; - padding: 10px; -} - - -html::after { - position: fixed !important; - content: url(media/nano.webp); - bottom: -5px !important; - right: 10px !important; - z-index: -1; -} diff --git a/stylesheets/simple.css b/stylesheets/simple.css deleted file mode 100644 index 88902a8..0000000 --- a/stylesheets/simple.css +++ /dev/null @@ -1,9 +0,0 @@ -html { - color-scheme: light dark; -} - -body { - max-width: 960px; - margin-left: auto; - margin-right: auto; -} \ No newline at end of file diff --git a/stylesheets/style.css b/stylesheets/style.css deleted file mode 100644 index 7d7a48d..0000000 --- a/stylesheets/style.css +++ /dev/null @@ -1,56 +0,0 @@ -body -{ - background: #111111; - color: #fc6c8e; - max-width: 960px; - margin-left: auto; - margin-right: auto; - font-family: "noto sans mono", monospace; - font-size: 12pt; -} - -a { - color: #fc6c8e; - font-weight: bold; -} - -a:hover { - color: purple; -} - -figcaption { - display: none; -} - -.box { - display: inline-block; -} - -.boxes { - display: flex; -} - -hr { - border: #202020 solid 1px; -} - -table -{ - border-collapse: collapse; -} - -table td, th -{ - border: 1px solid #202020; - padding: 4px; -} - -/* -body::after { - position: fixed !important; - content: url(); - top: 0px !important; - right: 0 !important; - z-index:-1; - -} */ diff --git a/stylesheets/style2.css b/stylesheets/style2.css deleted file mode 100644 index fbed7ef..0000000 --- a/stylesheets/style2.css +++ /dev/null @@ -1,51 +0,0 @@ -body -{ - overflow-x: hidden; - max-width: 960px; - margin-left: auto; - margin-right: auto; -} - -li p { - margin: 0; -} - -img { - max-width: 100%; - height: auto; -} -@keyframes rainbow { - 0% {color: red} - 33% {color: lime} - 66% {color: blue} - 100% {color: red} -} -.visual { - background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); - background-clip: text; - color: transparent; - /* animation: rainbow 1s linear infinite; */ -} - -.content { - /* padding-left: 3%; */ -} - -.box { - display: inline-block; -} - -.boxes { - display: flex; -} - - -/* -body::after { - position: fixed !important; - content: url(); - top: 0px !important; - right: 0 !important; - z-index:-1; - -} */ diff --git a/template.html b/template.html index 0982f3e..f5a0f38 100644 --- a/template.html +++ b/template.html @@ -15,5 +15,6 @@ pages / blog / journal / - about site + about site / + source
-- cgit v1.2.3