# HG changeset patch # User yakumo_izuru # Date 1749347270 10800 # Node ID 380da6d0a7e9fc5c9f5bef49ef1dcbaa5a991980 # Parent 998d5e743163d43397e0ef5453cb4b4488012259 Swapped fonts, return of the webring diff -r 998d5e743163 -r 380da6d0a7e9 Makefile --- a/Makefile Fri May 30 19:41:23 2025 -0300 +++ b/Makefile Sat Jun 07 22:47:50 2025 -0300 @@ -1,6 +1,6 @@ all: @echo "Available targets" -.for i in build clean serve +.for i in build clean serve upload @echo "* ${i}" .endfor build: @@ -9,4 +9,6 @@ @cd site; aya clean serve: @cd site; aya serve +upload: + @cd site; aya upload diff -r 998d5e743163 -r 380da6d0a7e9 README.md --- a/README.md Fri May 30 19:41:23 2025 -0300 +++ b/README.md Sat Jun 07 22:47:50 2025 -0300 @@ -22,3 +22,6 @@ * [Reimu Hakurei by @Ryogo_PL](https://www.pixiv.net/member_illust.php?mode=medium&illust_id=62937256) * [Yukari Yakumo by bakanoe](https://www.pixiv.net/member_illust.php?mode=medium&illust_id=44402951) * [Yukari Yakumo by jan@C95日曜東ラ29a](https://www.pixiv.net/member_illust.php?mode=medium&illust_id=71565780) + +### Fonts +* [Umefont](http://osdn.jp/projects/ume-font/wiki/FrontPage) diff -r 998d5e743163 -r 380da6d0a7e9 site/.aya/menu.html --- a/site/.aya/menu.html Fri May 30 19:41:23 2025 -0300 +++ b/site/.aya/menu.html Sat Jun 07 22:47:50 2025 -0300 @@ -18,7 +18,8 @@ Register
Services
Staff
- Terms of service + Terms of service
+ Webring

@@ -28,15 +29,6 @@ Powered by NetBSD - diff -r 998d5e743163 -r 380da6d0a7e9 site/about/index.md --- a/site/about/index.md Fri May 30 19:41:23 2025 -0300 +++ b/site/about/index.md Sat Jun 07 22:47:50 2025 -0300 @@ -2,8 +2,7 @@ title: About --- -This was a box barely maintained beyond a Minecraft server (which has been closed down since), which is hosted on the boundary between -two somewhat conflicting but coexisting worlds, for the time span of over two years... +This was a box barely maintained beyond a Minecraft server (which has been closed down since), which is hosted on the boundary between two somewhat conflicting but coexisting worlds, for the time span of over two years... ...until [Izuru Yakumo](https://mugen-no-ryouiki.yakumo.dev) (at that point in time, going by another nickname no one must know) was granted access by the sole dictator of the [Kallist Society Texhnolyzers](https://kalli.st), around March 2023. @@ -16,10 +15,9 @@ By the next year, there were a few major changes, such as migrating [Makai](https://makai.chaotic.ninja) to the now former Minecraft server, and several other people joined and eventually promoted. -As of September 2024, almost a year since the migration to FreeBSD, the server was migrated once again to [NetBSD](https://netbsd.org), -but its success rate was mixed, because the [hosting provider](https://contabo.com) refuses to fix IPv6 on the datacenter this server lives on, and has been broken since. +As of September 2024, almost a year since the migration to FreeBSD, the server was migrated once again to [NetBSD](https://netbsd.org). -Two months later, a new domain name has been acquired, thanks to the [toofast.vip owner](https://the8woodcutter.sh), +Two months later, a new domain name has been acquired, thanks to [this guy](https://the8woodcutter.sh), and nearly every subdomain on [chaotic.ninja](https://chaotic.ninja) has been migrated to yakumo.dev, in fears of chaotic.ninja ceasing to exist. Currently, the chaotic.ninja torch was passed to Mima, who remains as its ruler, while the rest of the crew, moved to yakumo.dev. diff -r 998d5e743163 -r 380da6d0a7e9 site/css/font.css --- a/site/css/font.css Fri May 30 19:41:23 2025 -0300 +++ b/site/css/font.css Sat Jun 07 22:47:50 2025 -0300 @@ -1,5 +1,8 @@ -@font-face { - font-family: 'ArialPixel'; - src: url('/fonts/ArialPixel.ttf') format('truetype'); +@font-face { + font-family: 'Ume UI Gothic'; + src: url('/fonts/ume-ugo4.ttf') format('truetype'); } - +@font-face { + font-family: 'Ume UI Gothic O5'; + src: url('/fonts/ume-ugo5.ttf') format('truetype'); +} diff -r 998d5e743163 -r 380da6d0a7e9 site/css/menu.css --- a/site/css/menu.css Fri May 30 19:41:23 2025 -0300 +++ b/site/css/menu.css Sat Jun 07 22:47:50 2025 -0300 @@ -16,24 +16,42 @@ @import "/css/font.css"; -/* - * Color schemes (Human mode) - */ -:root { +/* Human mode */ +@media (prefers-color-scheme: light) { + :root { --bg: #ffffff; --fg: #000000; --link: #000000; --link-hover: #800080; --link-visited: #ff0000; --border: #9d9d9d; + } + body { + background-image: url('/img/reimu.jpg'); + background-position: 40% 10%; + } } +/* Youkai mode */ +@media (prefers-color-scheme: dark) { + :root { + --bg: #000000; + --fg: #ffffff; + --link: #ffffff; + --link-hover: #ffd700; + --link-visited: #ffa500; + --border: #494949; + } + body { + background-image: url('/img/yukari.jpg'); + background-position: 35% 35%; + } +} + body { - background-image: url('/img/reimu.jpg'); - background-position: 40% 10%; background-repeat: no-repeat; background-color: var(--bg); - font-family: 'ArialPixel', sans-serif; + font-family: 'Ume UI Gothic'; font-weight: bold; } div.content { @@ -57,43 +75,19 @@ .menu a:visited { color: var(--link-visited); } -.footer { - margin-top: 85ch; - position: relative; - text-align: center; -} .powered_by { float: right; } -@media(prefers-color-scheme: dark) { - /* - * Color schemes (Youkai mode) - */ - :root { - --bg: #000000; - --fg: #ffffff; - --link: #ffffff; - --link-hover: #ffd700; - --link-visited: #ffa500; - --border: #494949; +@media screen and (max-width: 600px) { + body { + background: var(--bg); + font-family: 'Roboto', sans-serif; } - body { - background-image: url('/img/yukari.jpg'); - background-position: 35% 35%; + .menu { + font-size: 20px; + } + .powered_by { + display: none; } } -@media screen and (max-width: 600px) { - body { - background-image: url('/img/reimu_mobile.jpg'); - } - .footer { - display: none - } - .menu { - font-size: 20px; - } - .powered_by { - display: none; - } -} diff -r 998d5e743163 -r 380da6d0a7e9 site/css/windowmaker.css --- a/site/css/windowmaker.css Fri May 30 19:41:23 2025 -0300 +++ b/site/css/windowmaker.css Sat Jun 07 22:47:50 2025 -0300 @@ -11,7 +11,7 @@ background-image: url('/img/reimu.jpg'); background-position: 40% 10%; background-color: white; - font-family: "ArialPixel"; + font-family: 'Ume UI Gothic'; } header { @@ -174,6 +174,7 @@ font-weight: bold; text-align: center; line-height: 19px; + font-family: 'Ume UI Gothic O5'; } #wrapper { diff -r 998d5e743163 -r 380da6d0a7e9 site/fonts/ArialPixel.ttf Binary file site/fonts/ArialPixel.ttf has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/fonts/ume-ugo4.ttf Binary file site/fonts/ume-ugo4.ttf has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/fonts/ume-ugo5.ttf Binary file site/fonts/ume-ugo5.ttf has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/img/banners/a320.gif Binary file site/img/banners/a320.gif has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/img/banners/chaoticninja.gif Binary file site/img/banners/chaoticninja.gif has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/img/banners/nishiboats.gif Binary file site/img/banners/nishiboats.gif has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/img/banners/prometheus.png Binary file site/img/banners/prometheus.png has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/img/banners/suwako.gif Binary file site/img/banners/suwako.gif has changed diff -r 998d5e743163 -r 380da6d0a7e9 site/webring/index.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/site/webring/index.md Sat Jun 07 22:47:50 2025 -0300 @@ -0,0 +1,52 @@ +--- +title: Webring +description: Nothing is ever isolated from anything +--- + +## About the links +This website is link-free/unlink-free +(You don't need to ask me) + +Please link to: + +* [gopher://yakumo.dev](gopher://yakumo.dev) for Gopher +* [http://yakumo.dev](/) for HTTP +* [ykm+60](http://ykm45ela6cq3hhv6u5xcvwxesbzoukcztm2oxzk74gdplruzfddfxcqd.onion) for Tor + +## About the banner +Please use any of the banners below for your link +(or both, or neither, if you prefer) + +If you do, don't make useless requests to this server by [hotlinking](https://en.wikipedia.org/wiki/Hotlinking) + +![](/img/banners/yakumolabs.png) + +## The Webring + +### a320 httpd +![](/img/banners/a320.gif) + +* [HTTP](http://a320.nishi.boats) + + +### Chaotic Ninja +![](/img/banners/chaoticninja.gif) + +* [HTTP](http://chaotic.ninja) + +### Nishi's boats (西の船) +![](/img/banners/nishiboats.gif) + +* [Gopher](gopher://gopher.nishi.boats) +* [HTTP](http://nishi.boats) + + +### Prometheus Information Systems Corp. +![](/img/banners/prometheus.png) + +* [HTTP](http://prometheus.systems) + +### Technical Suwako +![](/img/banners/suwako.gif) + +* [HTTP](https://technicalsuwako.moe)