From 435aeb674198769b61b0ee8d82f85a108bacf49e Mon Sep 17 00:00:00 2001 From: radiohotline Date: Tue, 17 Feb 2026 14:44:55 +0300 Subject: maintainence --- santa/bgs/postal_bg_m.gif | Bin 0 -> 66510 bytes santa/brdrs/postal_letter_brdr.png | Bin 0 -> 303 bytes santa/global.css | 47 +++++++ santa/imgs/about.png | Bin 0 -> 806 bytes santa/imgs/grass.png | Bin 0 -> 3220 bytes santa/imgs/grass2.png | Bin 0 -> 7784 bytes santa/imgs/hoard.png | Bin 0 -> 695 bytes santa/imgs/home.png | Bin 0 -> 407 bytes santa/imgs/index.png | Bin 0 -> 459 bytes santa/imgs/links.png | Bin 0 -> 391 bytes santa/imgs/microblog.png | Bin 0 -> 501 bytes santa/imgs/music.png | Bin 0 -> 684 bytes santa/imgs/postman.png | Bin 0 -> 423 bytes santa/imgs/sitemap.png | Bin 0 -> 446 bytes santa/imgs/sotw.png | Bin 0 -> 393 bytes santa/imgs/woman.png | Bin 0 -> 5998 bytes santa/imgs/writing.png | Bin 0 -> 453 bytes santa/main.css | 162 +++++++++++++++++++++++ santa/robots.txt | 197 ++++++++++++++++++++++++++++ santa/sitemap.html | 256 +++++++++++++++++++++++++++++++++++++ 20 files changed, 662 insertions(+) create mode 100644 santa/bgs/postal_bg_m.gif create mode 100644 santa/brdrs/postal_letter_brdr.png create mode 100644 santa/global.css create mode 100644 santa/imgs/about.png create mode 100644 santa/imgs/grass.png create mode 100644 santa/imgs/grass2.png create mode 100644 santa/imgs/hoard.png create mode 100644 santa/imgs/home.png create mode 100644 santa/imgs/index.png create mode 100644 santa/imgs/links.png create mode 100644 santa/imgs/microblog.png create mode 100644 santa/imgs/music.png create mode 100644 santa/imgs/postman.png create mode 100644 santa/imgs/sitemap.png create mode 100644 santa/imgs/sotw.png create mode 100644 santa/imgs/woman.png create mode 100644 santa/imgs/writing.png create mode 100644 santa/main.css create mode 100644 santa/robots.txt create mode 100644 santa/sitemap.html (limited to 'santa') diff --git a/santa/bgs/postal_bg_m.gif b/santa/bgs/postal_bg_m.gif new file mode 100644 index 0000000..99987fa Binary files /dev/null and b/santa/bgs/postal_bg_m.gif differ diff --git a/santa/brdrs/postal_letter_brdr.png b/santa/brdrs/postal_letter_brdr.png new file mode 100644 index 0000000..1ce7d69 Binary files /dev/null and b/santa/brdrs/postal_letter_brdr.png differ diff --git a/santa/global.css b/santa/global.css new file mode 100644 index 0000000..e491c14 --- /dev/null +++ b/santa/global.css @@ -0,0 +1,47 @@ +/* +FONT FACES +*/ +@TEMP { + font-family: ''; + src: url(''); +} + +/* +ROOTS +*/ +:root { + --bg: #d6d6d6; + --accent: #465864; + --white: #f0e5d1; + --blue: #125484; + --red: #d55031; +} + +/* +MISC +*/ +html { + cursor: url(imgs/postal_cursor_close.png), default; + image-rendering: pixelated; + text-transform: lowercase; +} + +button:hover, a:hover, a:active, button:active { + cursor: url(imgs/postal_cursor_open.png), pointer; +} + +body { + font-family: "Times New Roman", Times, serif; + color: black; + font-size: 14px; +} + +a:link, a:visited { + color: var(--red); + text-decoration: none; +} + +a:hover { + text-decoration: underline; + color: var(--blue); +} \ No newline at end of file diff --git a/santa/imgs/about.png b/santa/imgs/about.png new file mode 100644 index 0000000..9ccae20 Binary files /dev/null and b/santa/imgs/about.png differ diff --git a/santa/imgs/grass.png b/santa/imgs/grass.png new file mode 100644 index 0000000..06805b8 Binary files /dev/null and b/santa/imgs/grass.png differ diff --git a/santa/imgs/grass2.png b/santa/imgs/grass2.png new file mode 100644 index 0000000..7f98ad5 Binary files /dev/null and b/santa/imgs/grass2.png differ diff --git a/santa/imgs/hoard.png b/santa/imgs/hoard.png new file mode 100644 index 0000000..ea36a45 Binary files /dev/null and b/santa/imgs/hoard.png differ diff --git a/santa/imgs/home.png b/santa/imgs/home.png new file mode 100644 index 0000000..414febb Binary files /dev/null and b/santa/imgs/home.png differ diff --git a/santa/imgs/index.png b/santa/imgs/index.png new file mode 100644 index 0000000..bc253cb Binary files /dev/null and b/santa/imgs/index.png differ diff --git a/santa/imgs/links.png b/santa/imgs/links.png new file mode 100644 index 0000000..0fc6a94 Binary files /dev/null and b/santa/imgs/links.png differ diff --git a/santa/imgs/microblog.png b/santa/imgs/microblog.png new file mode 100644 index 0000000..3bdd6d0 Binary files /dev/null and b/santa/imgs/microblog.png differ diff --git a/santa/imgs/music.png b/santa/imgs/music.png new file mode 100644 index 0000000..b380233 Binary files /dev/null and b/santa/imgs/music.png differ diff --git a/santa/imgs/postman.png b/santa/imgs/postman.png new file mode 100644 index 0000000..9622fed Binary files /dev/null and b/santa/imgs/postman.png differ diff --git a/santa/imgs/sitemap.png b/santa/imgs/sitemap.png new file mode 100644 index 0000000..182cab8 Binary files /dev/null and b/santa/imgs/sitemap.png differ diff --git a/santa/imgs/sotw.png b/santa/imgs/sotw.png new file mode 100644 index 0000000..666c344 Binary files /dev/null and b/santa/imgs/sotw.png differ diff --git a/santa/imgs/woman.png b/santa/imgs/woman.png new file mode 100644 index 0000000..919aa81 Binary files /dev/null and b/santa/imgs/woman.png differ diff --git a/santa/imgs/writing.png b/santa/imgs/writing.png new file mode 100644 index 0000000..d055599 Binary files /dev/null and b/santa/imgs/writing.png differ diff --git a/santa/main.css b/santa/main.css new file mode 100644 index 0000000..0502375 --- /dev/null +++ b/santa/main.css @@ -0,0 +1,162 @@ +body { + width: 600px; + margin: auto; + background-image: url(bgs/postal_bg_m.gif); +} + +header, #header, #main, #box { + position: relative; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin-top: 20px; +} + +#musicTab { + left: -255px; + top: 50px; + position: fixed; + z-index: 2; + height: 250px; + width: 280px; + display: flex; + flex-direction: row; + + border-image-slice: 33 10 10 33 fill; + border-image-width: 33px 10px 10px 33px; + border-image-outset: 0px 0px 0px 0px; + border-image-repeat: stretch stretch; + border-image-source: url(brdrs/postal_letter_brdr.png); + border-style: solid; +} + +#musicTab:hover { + left: 0; + animation: pullout 0.5s ease; +} + +@keyframes pullout { + 0% { left: -255px;} + 100% { left: 0;} +} + +header { + color: black; + font-size: 28px; + font-weight: 700; + text-shadow: + var(--white) 2px 2px, + var(--white) -2px 2px, + var(--white) 2px -2px, + var(--white) -2px -2px; + text-align: center; +} + +/* For nav and content layout */ +#main { + width: 100%; + display: flex; + gap: 6px; +} + +/* For content only layout */ +#box { + width: 100%; +} + +/* Used for normal titles */ +h1 { + font-size: 15px; + font-weight: 700; + text-shadow: + var(--white) 1px 1px, + var(--white) -1px 1px, + var(--white) 1px -1px, + var(--white) -1px -1px; + background-color: var(--accent); + margin-top: 6px; + padding: 3px; + border: 1px solid black; + border-radius: 1px; + text-align: center; +} + +h2 { + font-size: 16px; + font-weight: 100; +} + +h3 { + font-weight: 600; + font-size: 16px; +} + +/* Used for titles that don't scroll */ +h4 { + font-size: 15px; + font-weight: 700; + text-shadow: + var(--white) 1px 1px, + var(--white) -1px 1px, + var(--white) 1px -1px, + var(--white) -1px -1px; + background-color: var(--accent); + margin-top: 6px; + padding: 3px; + border-bottom: 1px solid black; + border-radius: 1px; + text-align: center; + position: sticky; + top: 0; + margin: 0; + margin-bottom: 6px; +} + +.scrollbox { + border: 1px solid black; + border-radius: 1px; + max-height: 200px; + overflow: scroll; + text-align: center; + margin-top: 0; + padding-bottom: 10px; + margin-bottom: 12px; +} + +.emph { + font-weight: 600; + color: var(--accent); +} + +.small { + font-size: 12px; +} + +.content { + border-image-slice: 33 10 10 33 fill; + border-image-width: 33px 10px 10px 33px; + border-image-outset: 0px 0px 0px 0px; + border-image-repeat: stretch stretch; + border-image-source: url(brdrs/postal_tab_brdr.png); + border-style: solid; + + max-width: 600px; + min-width: 600px; + padding: 8px; + margin-bottom: 6px; +} + +.footer { + width: 500px; + text-align: center; + margin-top: 20px; + margin-left: 60px; + + border-image-slice: 33 10 10 33 fill; + border-image-width: 33px 10px 10px 33px; + border-image-outset: 0px 0px 0px 0px; + border-image-repeat: stretch stretch; + border-image-source: url(brdrs/postal_letter_brdr.png); + border-style: solid; +} diff --git a/santa/robots.txt b/santa/robots.txt new file mode 100644 index 0000000..b09000c --- /dev/null +++ b/santa/robots.txt @@ -0,0 +1,197 @@ +# robots.txt +# https://owly.fans/robots.txt +# Page is under FOPL-ZERO +# https://owly.fans/license/fopl-zero + +# Want to know when this page is updated? Follow the RSS! +# https://owly.fans/rss/robots.xml + +# This page is also on git: +# Please feel free to suggest a change to this file +# https://github.com/DynTylluan/owly.fans/blob/main/robots.txt (main) +# https://notabug.org/DynTylluan/owly.fans/src/main/robots.txt (mirror) +# https://tildegit.org/cass/owly.fans/src/branch/main/robots.txt (mirror) + +# AdIdxBot (Bing/Microsoft) +# Used by Bing Ads for «quality control» for, you guessed it, ads! +# https://bing.com/webmasters/help/which-crawlers-does-bing-use-8c184ec0 +User-Agent: AdIdxBot +Disallow: / + +# Amazon +# Used for Alexa - does not cite sources. +# https://developer.amazon.com/support/amazonbot +User-Agent: Amazonbot +Disallow: / + +# Anthropic +# «AI research and products that put safety at the +# frontier» - no thanks! +# https://anthropic.com +User-agent: anthropic-ai +Disallow: / + +# Apple's bot +# Used for Siri and Spotlight Suggestions. Does not cite its sources. +# https://support.apple.com/en-us/HT204683 +User-Agent: Applebot +User-Agent: AppleNewsBot +Disallow: / + +# Claude +# Used to help AI. +# https://claude.ai +User-agent: Claude-Web +Disallow: / + +# Cohere +# Stupid bot used to help artificial intelligence. +# https://cohere.com +User-agent: cohere-ai +Disallow: / + +# Common Crawl bot +# From what I've leant from reading online, «[t]he majority of ChatGPT's +# training data comes from the Common Crawl crawler bot». +# Quote: https://datadome.co/threat-research/how-chatgpt-openai-might-use-your-content-now-in-the-future +# https://commoncrawl.org/faq +User-agent: CCBot +Disallow: / + +# EmailSiphon +# Email harvesting bot, get outta here! +User-agent: EmailSiphon +Disallow: / + +# FacebookBot +# Used to «improve language models for our speech recognition technology», +# so more AI rubbish that I don't want from a company that I don't like. +User-Agent: FacebookBot +User-Agent: meta-externalagent +Disallow: / + +# Google's AdSense/StoreBot bots +# Go away - I don't want you here. +# https://developers.google.com/search/docs/crawling-indexing/overview-google-crawlers +User-Agent: AdsBot-Google-Mobile +User-Agent: Storebot-Google +User-Agent: AdsBot-Google +User-agent: Mediapartners-Google +Disallow: / + +# Google's AI training bot +# I don't want to have my content used without giving me credit. +# https://blog.google/technology/ai/an-update-on-web-publisher-controls +User-agent: Google-Extended +Disallow: / + +# GPTBot is OpenAI's web crawler +# I do not want it to use my content as it does not cite its sources. +# https://platform.openai.com/docs/gptbot +User-agent: GPTBot +User-agent: ChatGPT-User +Disallow: / + +# ia_archiver +# In the past, the Internet Archive (https://archive.org) used to have a +# bot called ia_archiver that you could allow (or disallow) to index your +# website, sometimes around 2017, this crawler stopped obeying robots.txt. + +# Putting ia_archiver and setting it to «Disallow: /» will not work. If +# you really want your website to not be seen on this archive, you will +# need to E-Mail info@archive.org. +# https://blog.archive.org/2017/04/17/robots-txt-meant-for-search-engines-dont-work-well-for-web-archives +# https://web.archive.org/web/20150322111536/http://archive.org/about/exclude.php +# https://blog.reputationx.com/block-wayback-machine + +# Magpie Crawler +# Used to download pages and get «indexed and analysed by our system». +# I don't want to use your service! +User-agent: magpie-crawler +Disallow: / + +# MindSpider +# According to cdc.gov, this bot «appears to be ill-behaved», so it is +# being blocked here. +# https://www.cdc.gov/robots.txt +User-agent: MindSpider +Disallow: / + +# Pinterest crawler +# I don't want my website to be used to «collect rich metadata like the +# price, description and availability of your products» or however they +# want to word that rubbish. +# https://help.pinterest.com/en/business/article/pinterest-crawler +User-agent: Pinterestbot +Disallow: / + +# This is where I copy Bytemoth +# I am taking it in good faith that Bytemoth knows what he's doing and that +# the following bots are for marketers - so I am blocking them. +# As taken from the following URL: http://bytemoth.nfshost.com/robots.txt +User-agent: adsbot +User-agent: AhrefsBot +User-agent: BLEXBot +User-agent: dotbot +User-agent: Pandalytics +User-agent: SemrushBot +User-agent: SemrushBot-BA +User-agent: SemrushBot-BM +User-agent: SemrushBot-CT +User-agent: SemrushBot-SA +User-agent: SemrushBot-SI +User-agent: SemrushBot-SWA +User-agent: serpstatbot +User agent: MTRobot +User-agent: PageThing +Disallow: / + + +# Bots that you might like to block +# There are a few bots that I am okay/don't really care all that much if +# they index my website, but not everyone might be okay with them, so +# if you copy this TXT on your website and want to have the bot not index +# it, simply remove the «#» before the «User-agent» and «Disallow» part. + +# DuckDuckGo +# The search engine website uses the following bots to index sites. +# https://duckduckgo.com/duckduckbot +# https://duckduckgo.com/duckduckgo-help-pages/results/duckduckbot +# https://duckduckgo.com/duckduckgo-help-pages/results/sources +# User-agent: DuckDuckBot +# Disallow: / + +# Other Google bots +# Don't like Google? Unmark these. +# https://developers.google.com/search/docs/crawling-indexing/overview-google-crawlers +# User-agent: Googlebot +# User-agent: Googlebot-News +# User-agent: Googlebot-Image +# User-agent: Googlebot-Video +# User-agent: Storebot-Google +# User-agent: Google-InspectionTool +# User-agent: GoogleOther +# User-agent: Google-Extended +# User-agent: APIs-Google +# User-agent: AdsBot-Google-Mobile +# User-agent: AdsBot-Google +# User-agent: Mediapartners-Google +# User-agent: FeedFetcher-Google +# User-agent: GoogleProducer +# User-agent: GoogleProducer; (+http://goo.gl/7y4SX) +# User-agent: google-speakr +# Disallow: / + +# Don't allow any bots +# If you don't want *any* good bots browsing your website, then unmark +# this. Please note that there are some bots still that don't obay +# robots.txt at all, like ia_archiver. +User-agent: * +Disallow: / + +# Allow all bots +# If you do, however, want to allow all bots, you should uncheck the +# following. You can also just *not* have a robots.txt and it'll +# work all the same. +# User-agent: * +# Allow: / \ No newline at end of file diff --git a/santa/sitemap.html b/santa/sitemap.html new file mode 100644 index 0000000..6d00ec8 --- /dev/null +++ b/santa/sitemap.html @@ -0,0 +1,256 @@ + + + + + + Merry Christmas, Andie! + + + +
Sitemap
+ +
+ + + +
+ + +
+ Index +
+ + Index +
+ +
+ Home +
+ + Home +
+ +
+ About +
+ + About +
+ +
+ + Microblog + Microblog +
+ +
+ + Links + Links +
+ +
+ +
+ Writing + Writing +
+ +
+ Music + + Music +
+ +
+ +
+ sotw + SOTW +
+ +
+ + Hoard + Hoard +
+ +
+ + Sitemap + Sitemap +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + -- cgit v1.3