From 76f6c6503a935593b37533c1f7c60687a7544443 Mon Sep 17 00:00:00 2001 From: WindowsAddict Date: Thu, 28 Aug 2025 05:42:03 +0530 Subject: Rename to _site --- _site/css/style.css | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++ _site/favicon.ico | Bin 0 -> 7886 bytes _site/img/bg.png | Bin 0 -> 37129 bytes _site/img/github.svg | 1 + _site/img/logo.png | Bin 0 -> 29329 bytes _site/index.html | 39 ++++++++++++++++++++++ build/css/style.css | 91 --------------------------------------------------- build/favicon.ico | Bin 7886 -> 0 bytes build/img/bg.png | Bin 37129 -> 0 bytes build/img/github.svg | 1 - build/img/logo.png | Bin 29329 -> 0 bytes build/index.html | 39 ---------------------- wrangler.jsonc | 2 +- 13 files changed, 132 insertions(+), 132 deletions(-) create mode 100644 _site/css/style.css create mode 100644 _site/favicon.ico create mode 100644 _site/img/bg.png create mode 100644 _site/img/github.svg create mode 100644 _site/img/logo.png create mode 100644 _site/index.html delete mode 100644 build/css/style.css delete mode 100644 build/favicon.ico delete mode 100644 build/img/bg.png delete mode 100644 build/img/github.svg delete mode 100644 build/img/logo.png delete mode 100644 build/index.html diff --git a/_site/css/style.css b/_site/css/style.css new file mode 100644 index 0000000..a9902c1 --- /dev/null +++ b/_site/css/style.css @@ -0,0 +1,91 @@ +html { + height: 100%; +} + +body { + margin: 0; + min-height: 100%; + + background-color: #000; + background-image: url('../img/bg.png'); + background-repeat: no-repeat; + background-size: cover; + background-attachment: fixed; + background-position: center; + + color: #fff; + font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; + text-shadow: 1px 1px 2px #0004; + font-size: 11pt; + + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; +} + +main { + text-align: center; + max-width: 800px; + padding: 16px; + margin: auto; + background-color: #fff2; + border-radius: 8px; + box-shadow: 5px 5px 20px #0002; + border: 1px solid #fff3; +} + +code { + font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; +} + +a { + color: #fff; +} + +a:hover, +.github-links a:hover > img { + opacity: 80%; +} + +a:active, +.github-links a:active > img { + opacity: 70%; +} + +hr { + border: none; + border-top: 1px solid #fff5; + width: 100%; +} + +.logo { + height: 160px; + margin: 0 0 -24px 0; +} + +.github-links { + width: 100%; + display: flex; + align-items: center; + justify-content: space-around; + margin: 2em 0 16px 0; +} + +.github-links a { + display: block; + text-decoration: none; +} + +.github-links img { + filter: drop-shadow(1px 1px 2px #0004); + height: 64px; +} + +@media (max-width: 832px) { + main { + border-radius: 0; + border-left: none; + border-right: none; + } +} diff --git a/_site/favicon.ico b/_site/favicon.ico new file mode 100644 index 0000000..fc6201e Binary files /dev/null and b/_site/favicon.ico differ diff --git a/_site/img/bg.png b/_site/img/bg.png new file mode 100644 index 0000000..a3722ca Binary files /dev/null and b/_site/img/bg.png differ diff --git a/_site/img/github.svg b/_site/img/github.svg new file mode 100644 index 0000000..0da8a90 --- /dev/null +++ b/_site/img/github.svg @@ -0,0 +1 @@ + diff --git a/_site/img/logo.png b/_site/img/logo.png new file mode 100644 index 0000000..0c7adf9 Binary files /dev/null and b/_site/img/logo.png differ diff --git a/_site/index.html b/_site/index.html new file mode 100644 index 0000000..d22d83c --- /dev/null +++ b/_site/index.html @@ -0,0 +1,39 @@ + + + + + + activated.win + + + +
+ +

activated.win

+ +
+ +

This domain is a backup domain owned by authors of Microsoft Activation Scripts.

+

Currently, the purpose of this domain is to provide the PowerShell method of running the script with aid of the get.activated.win subdomain.

+ +
+ +

To learn more, please see respective GitHub repositories found below.

+ + +
+ + diff --git a/build/css/style.css b/build/css/style.css deleted file mode 100644 index a9902c1..0000000 --- a/build/css/style.css +++ /dev/null @@ -1,91 +0,0 @@ -html { - height: 100%; -} - -body { - margin: 0; - min-height: 100%; - - background-color: #000; - background-image: url('../img/bg.png'); - background-repeat: no-repeat; - background-size: cover; - background-attachment: fixed; - background-position: center; - - color: #fff; - font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - text-shadow: 1px 1px 2px #0004; - font-size: 11pt; - - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -main { - text-align: center; - max-width: 800px; - padding: 16px; - margin: auto; - background-color: #fff2; - border-radius: 8px; - box-shadow: 5px 5px 20px #0002; - border: 1px solid #fff3; -} - -code { - font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} - -a { - color: #fff; -} - -a:hover, -.github-links a:hover > img { - opacity: 80%; -} - -a:active, -.github-links a:active > img { - opacity: 70%; -} - -hr { - border: none; - border-top: 1px solid #fff5; - width: 100%; -} - -.logo { - height: 160px; - margin: 0 0 -24px 0; -} - -.github-links { - width: 100%; - display: flex; - align-items: center; - justify-content: space-around; - margin: 2em 0 16px 0; -} - -.github-links a { - display: block; - text-decoration: none; -} - -.github-links img { - filter: drop-shadow(1px 1px 2px #0004); - height: 64px; -} - -@media (max-width: 832px) { - main { - border-radius: 0; - border-left: none; - border-right: none; - } -} diff --git a/build/favicon.ico b/build/favicon.ico deleted file mode 100644 index fc6201e..0000000 Binary files a/build/favicon.ico and /dev/null differ diff --git a/build/img/bg.png b/build/img/bg.png deleted file mode 100644 index a3722ca..0000000 Binary files a/build/img/bg.png and /dev/null differ diff --git a/build/img/github.svg b/build/img/github.svg deleted file mode 100644 index 0da8a90..0000000 --- a/build/img/github.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/build/img/logo.png b/build/img/logo.png deleted file mode 100644 index 0c7adf9..0000000 Binary files a/build/img/logo.png and /dev/null differ diff --git a/build/index.html b/build/index.html deleted file mode 100644 index d22d83c..0000000 --- a/build/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - activated.win - - - -
- -

activated.win

- -
- -

This domain is a backup domain owned by authors of Microsoft Activation Scripts.

-

Currently, the purpose of this domain is to provide the PowerShell method of running the script with aid of the get.activated.win subdomain.

- -
- -

To learn more, please see respective GitHub repositories found below.

- - -
- - diff --git a/wrangler.jsonc b/wrangler.jsonc index bddb9be..0da3908 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -2,6 +2,6 @@ "name": "activated-win", "compatibility_date": "2025-08-27", "assets": { - "directory": "./build" + "directory": "./_site" } } -- cgit v1.2.3