From 94981ba8631d8910455de2255bba9a55223d2a09 Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Sat, 11 Apr 2026 15:09:18 -0700 Subject: initial commit --- .editorconfig | 21 +++ .gitignore | 3 + README.md | 9 ++ assets/apple-touch-icon.png | Bin 0 -> 1927 bytes assets/favicon.ico | Bin 0 -> 41566 bytes assets/favicon.svg | 1 + assets/img/sky-a.jpg | Bin 0 -> 1571925 bytes assets/img/sky-b.jpg | Bin 0 -> 1480937 bytes assets/og-image.png | Bin 0 -> 1217727 bytes assets/style/root.css | 38 +++++ assets/style/type.css | 31 ++++ assets/type/400.woff2 | Bin 0 -> 37736 bytes assets/type/400i.woff2 | Bin 0 -> 39036 bytes assets/type/600.woff2 | Bin 0 -> 38600 bytes assets/type/600i.woff2 | Bin 0 -> 39388 bytes index.html | 376 ++++++++++++++++++++++++++++++++++++++++++++ 16 files changed, 479 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 README.md create mode 100644 assets/apple-touch-icon.png create mode 100644 assets/favicon.ico create mode 100644 assets/favicon.svg create mode 100644 assets/img/sky-a.jpg create mode 100644 assets/img/sky-b.jpg create mode 100644 assets/og-image.png create mode 100644 assets/style/root.css create mode 100644 assets/style/type.css create mode 100644 assets/type/400.woff2 create mode 100644 assets/type/400i.woff2 create mode 100644 assets/type/600.woff2 create mode 100644 assets/type/600i.woff2 create mode 100644 index.html diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d20ac7a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig configuration for netop://ウエハ's projects +# http://editorconfig.org + +# Top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file, utf-8 charset +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +# Match diffs, avoid to trim trailing whitespace +[*.{diff,patch}] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..11c8d63 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Files +.DS_Store +Thumbs.db diff --git a/README.md b/README.md new file mode 100644 index 0000000..1d729b7 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# homepage + +> Homepage of Ideas Never Cease + + + +It's just HTML, CSS, and a lil' JavaScript that degrades gracefully. + +To the point, that's it. diff --git a/assets/apple-touch-icon.png b/assets/apple-touch-icon.png new file mode 100644 index 0000000..3f97c2a Binary files /dev/null and b/assets/apple-touch-icon.png differ diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100644 index 0000000..7bf9cea Binary files /dev/null and b/assets/favicon.ico differ diff --git a/assets/favicon.svg b/assets/favicon.svg new file mode 100644 index 0000000..feefbac --- /dev/null +++ b/assets/favicon.svg @@ -0,0 +1 @@ + diff --git a/assets/img/sky-a.jpg b/assets/img/sky-a.jpg new file mode 100644 index 0000000..a2936c0 Binary files /dev/null and b/assets/img/sky-a.jpg differ diff --git a/assets/img/sky-b.jpg b/assets/img/sky-b.jpg new file mode 100644 index 0000000..e32ac6a Binary files /dev/null and b/assets/img/sky-b.jpg differ diff --git a/assets/og-image.png b/assets/og-image.png new file mode 100644 index 0000000..c86ce75 Binary files /dev/null and b/assets/og-image.png differ diff --git a/assets/style/root.css b/assets/style/root.css new file mode 100644 index 0000000..28b325d --- /dev/null +++ b/assets/style/root.css @@ -0,0 +1,38 @@ +:root { + --background-color: var(--uchu-gray-1); + --base-grid-color1: oklch(var(--uchu-blue-3-raw) / 30%); + --base-grid-color2: oklch(var(--uchu-purple-3-raw) / 30%); + --baseline: calc(var(--line-height) / 2); + --block-spacing-bottom: var(--line-height); + --block-spacing-top: 0; + --column-gap: calc(var(--line-height) * 2); + --display-scale: 1; + --font-mono: "inc mono"; + --font-sans: null; + --font-serif: null; + --font-size: 12px; + --foreground-color: oklch(var(--uchu-yin-raw) / 80%); + --h1-size: 2.8rem; + --h2-size: 2.2rem; + --h3-size: 1.4rem; + --h4-size: 1.1rem; + --hr-thickness: 2px; + --line-height: calc(var(--font-size) * 1.5); + --pixel: 1px; + --row-gap: var(--line-height); + + @media only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) { + --display-scale: 2; + --pixel: 0.5px; + } + + @media only screen and (min-device-pixel-ratio: 2.5), only screen and (min-resolution: 2.5dppx) { + --display-scale: 3; + --pixel: 0.34px; + } + + @media only screen and (min-device-pixel-ratio: 3.5), only screen and (min-resolution: 3.5dppx) { + --display-scale: 4; + --pixel: 0.25px; + } +} diff --git a/assets/style/type.css b/assets/style/type.css new file mode 100644 index 0000000..2096864 --- /dev/null +++ b/assets/style/type.css @@ -0,0 +1,31 @@ +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: normal; + font-weight: 400; + src: url("../type/400.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: italic; + font-weight: 400; + src: url("../type/400i.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: normal; + font-weight: 600; + src: url("../type/600.woff2") format("woff2"); +} + +@font-face { + font-display: swap; + font-family: "inc mono"; + font-style: italic; + font-weight: 600; + src: url("../type/600i.woff2") format("woff2"); +} diff --git a/assets/type/400.woff2 b/assets/type/400.woff2 new file mode 100644 index 0000000..ffafed3 Binary files /dev/null and b/assets/type/400.woff2 differ diff --git a/assets/type/400i.woff2 b/assets/type/400i.woff2 new file mode 100644 index 0000000..527be83 Binary files /dev/null and b/assets/type/400i.woff2 differ diff --git a/assets/type/600.woff2 b/assets/type/600.woff2 new file mode 100644 index 0000000..57a7053 Binary files /dev/null and b/assets/type/600.woff2 differ diff --git a/assets/type/600i.woff2 b/assets/type/600i.woff2 new file mode 100644 index 0000000..5a12834 Binary files /dev/null and b/assets/type/600i.woff2 differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..1613b21 --- /dev/null +++ b/index.html @@ -0,0 +1,376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ideas Never Cease ∙ Research & Development Haus × Technical Atelier + + + + + + + + + + + + +
+
+

Ideas Never Cease

+
+
+ +
+
+
+

Research & Development Haus × Technical Atelier

+

via Paul Anthony Webb

+
+
+ +
+
+
+

Development

+ +
    +
  • Socii · social network
  • +
+
+
+
+ +
+
+
+

Research

+ +
    +
  • Aries · web browser
  • +
  • BackOffice · business operating system
  • +
  • Beachfront · domain registrar
  • +
  • Chew · analytics
  • +
  • Hikari · computing hardware
  • +
  • Neuenet · domain registry
  • +
  • Nickel · video hosting
  • +
  • Pidge · email
  • +
  • Queree · search engine
  • +
  • Sona · personal operating system
  • +
  • Vendo · e-commerce
  • +
  • WEÖM · lifestyle brand
  • +
+
+
+
+ +
+
+
+

Manifesto

+
    +
  1. Sustainability over growth
  2. +
  3. Move slow & build
  4. +
  5. Ethics over money
  6. +
  7. “Impossible” is an excuse
  8. +
  9. Purpose over everything
  10. +
  11. Accept you
  12. +
  13. Share learned wisdom
  14. +
  15. You make your reality
  16. +
  17. Use your 24
  18. +
  19. Cherish life
  20. +
+
+
+
+
+ + + + + + -- cgit v1.2.3