commit fe526a5ad738e88b8590177c2b52ef94971c5879 Author: Deiru TwoKey Date: Tue Apr 14 17:02:35 2026 +0300 Fat ass diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..6565048 Binary files /dev/null and b/.DS_Store differ diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..f54d014 Binary files /dev/null and b/favicon.png differ diff --git a/favicon.svg b/favicon.svg new file mode 100644 index 0000000..8785267 --- /dev/null +++ b/favicon.svg @@ -0,0 +1,3 @@ + + 🌕 + diff --git a/fonts/noto-sans-cjk.otf b/fonts/noto-sans-cjk.otf new file mode 100644 index 0000000..a48f2b8 Binary files /dev/null and b/fonts/noto-sans-cjk.otf differ diff --git a/img/.DS_Store b/img/.DS_Store new file mode 100644 index 0000000..9f4852d Binary files /dev/null and b/img/.DS_Store differ diff --git a/img/line.svg b/img/line.svg new file mode 100644 index 0000000..4c62361 --- /dev/null +++ b/img/line.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + diff --git a/img/marisas-peach-no-bubble.png b/img/marisas-peach-no-bubble.png new file mode 100644 index 0000000..838e991 Binary files /dev/null and b/img/marisas-peach-no-bubble.png differ diff --git a/img/marisas-peach-no-bubble.webp b/img/marisas-peach-no-bubble.webp new file mode 100644 index 0000000..60e2b06 Binary files /dev/null and b/img/marisas-peach-no-bubble.webp differ diff --git a/img/marisas-peach-thumb-round.png b/img/marisas-peach-thumb-round.png new file mode 100644 index 0000000..864cdb1 Binary files /dev/null and b/img/marisas-peach-thumb-round.png differ diff --git a/img/marisas-peach-thumb-round.webp b/img/marisas-peach-thumb-round.webp new file mode 100644 index 0000000..73be4b6 Binary files /dev/null and b/img/marisas-peach-thumb-round.webp differ diff --git a/img/marisas-peach-thumb.png b/img/marisas-peach-thumb.png new file mode 100644 index 0000000..b9cb123 Binary files /dev/null and b/img/marisas-peach-thumb.png differ diff --git a/img/marisas-peach-thumb.webp b/img/marisas-peach-thumb.webp new file mode 100644 index 0000000..45d9b9d Binary files /dev/null and b/img/marisas-peach-thumb.webp differ diff --git a/img/marisas-peach.png b/img/marisas-peach.png new file mode 100644 index 0000000..1b42f5e Binary files /dev/null and b/img/marisas-peach.png differ diff --git a/img/marisas-peach.webp b/img/marisas-peach.webp new file mode 100644 index 0000000..c2ee8f8 Binary files /dev/null and b/img/marisas-peach.webp differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e6b8d5a --- /dev/null +++ b/index.html @@ -0,0 +1,46 @@ + + + + COOL ZONE + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

デイル 🌕 ツキ

+ +
+
+ + + diff --git a/styles/font.css b/styles/font.css new file mode 100644 index 0000000..0df7709 --- /dev/null +++ b/styles/font.css @@ -0,0 +1,4 @@ +@font-face { + font-family: "Noto Sans CJK"; + src: url("/fonts/noto-sans-cjk.otf") format("opentype"); +} diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..4518360 --- /dev/null +++ b/styles/style.css @@ -0,0 +1,142 @@ +html, body { + height: 100%; + width: 100%; + margin: 0; +} + +body { + overflow: clip; +} + +body:after { + position: absolute; + z-index: -1; + left: 0; + top: 0; + display: block; + content: ''; + height: 100%; + width: 100%; + background-image: url('/img/line.svg'); + background-repeat: repeat; + background-size: 100%; +} + +.page-container { + display: flex; + width: 100%; + height: 100%; + align-items: center; + justify-content: center; +} + +.container { + display: flex; + flex-direction: column; + align-items: center; + gap: 15px; +} + +.container h1 { + font-family: "Noto Sans CJK"; + text-align: center; + padding: 5px; + flex-grow: 0; + width: fit-content; + background-color: white; + border: 4px dashed #ffea8d; + box-sizing: border-box; + border-radius: 8px; +} + +.container .credits a { + text-decoration: none; +} + +.container .img-container { + display: flex; + flex-direction: column; + align-items: center; + height: calc(50vh + 16px); + width: calc(50vh + 16px); + background: white; + z-index: 1; + border-radius: 8px; + box-sizing: border-box; +} + +.container .img-container input { + height: 0px; + margin: 0px; +} + +.container .img-container .img { + height: 100%; + width: 100%; + position: relative; + content: ''; + z-index: 2; + border: 8px dashed #ffea8d; + border-radius: 8px; + box-sizing: border-box; + background-image: url(/img/marisas-peach-no-bubble.webp); + background-size: cover; + background-repeat: no-repeat; + background-position: center; + cursor: pointer; +} + +.container .img-container input:checked+.img { + background-image: url(/img/marisas-peach.webp); +} + +footer { + position: fixed; + width: 100%; + display: flex; + justify-content: space-between; + box-sizing: border-box; + bottom: 0; + left: 0; +} + +footer .credits { + padding: 4px; + width: fit-content; + background: white; + flex-grow: 0; + text-align: center; + box-sizing: border-box; +} + +footer .credits.left { + border-top: 2px dashed #ffea8d; + border-right: 2px dashed #ffea8d; + border-top-right-radius: 8px; +} + +footer .credits.right { + border-top: 2px dashed #ffea8d; + border-left: 2px dashed #ffea8d; + border-top-left-radius: 8px; +} + +footer .credits a { + text-decoration: none; + +} + + + +@media (max-width: 480px) { + .container h1 { + font-size: 24px; + } + .container .img-container { + width: calc(85vw + 16px); + height: calc(85vw + 16px); + } + footer .credits { + font-size: 10px; + } +}