From f6846d4ed0b6d6330df565af300a5e23387ac859 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:45:56 -0500 Subject: [PATCH 1/7] Upload files to "/" changed color and font --- style.css | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..fb46ff9 --- /dev/null +++ b/style.css @@ -0,0 +1,58 @@ +body +{ + margin: 0; + padding: 0; + font-family: "Courier New", Courier, monospace; +} + +html +{ + background-color: black; +} + +.navbar ul +{ + background-color: dodgerblue; + display: flex; + list-style-type: none; + justify-content: center; + left: 0; + margin: 0; + overflow: hidden; + padding: 0; + position: fixed; + top: 0; + width: 100%; +} + +.navbar ul li +{ + float: left; +} + +.navbar ul li a +{ + color: black; + display: block; + padding: 14px 16px; + text-align: center; + text-decoration: none; +} + +.navbar ul li a:hover +{ + background-color: blue; +} + +.text-block +{ + border: 2px solid blue; + color: white; + justify-content: center; + margin-bottom: 5%; + margin-left: 25%; + margin-right: 25%; + margin-top: 5%; + padding: 10px 15px; + text-align: center; +} -- 2.52.0 From 809e70eeac8ad438d39973020680e6dfe0a6c3e8 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:46:46 -0500 Subject: [PATCH 2/7] Delete style.css --- style.css | 58 ------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 style.css diff --git a/style.css b/style.css deleted file mode 100644 index fb46ff9..0000000 --- a/style.css +++ /dev/null @@ -1,58 +0,0 @@ -body -{ - margin: 0; - padding: 0; - font-family: "Courier New", Courier, monospace; -} - -html -{ - background-color: black; -} - -.navbar ul -{ - background-color: dodgerblue; - display: flex; - list-style-type: none; - justify-content: center; - left: 0; - margin: 0; - overflow: hidden; - padding: 0; - position: fixed; - top: 0; - width: 100%; -} - -.navbar ul li -{ - float: left; -} - -.navbar ul li a -{ - color: black; - display: block; - padding: 14px 16px; - text-align: center; - text-decoration: none; -} - -.navbar ul li a:hover -{ - background-color: blue; -} - -.text-block -{ - border: 2px solid blue; - color: white; - justify-content: center; - margin-bottom: 5%; - margin-left: 25%; - margin-right: 25%; - margin-top: 5%; - padding: 10px 15px; - text-align: center; -} -- 2.52.0 From 073a44d0f06c6b8b0be59c54fc862bf488a25805 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:47:20 -0500 Subject: [PATCH 3/7] Update assets/style.css changed font and color --- assets/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/style.css b/assets/style.css index c1a83a6..450ac7b 100644 --- a/assets/style.css +++ b/assets/style.css @@ -2,6 +2,7 @@ body { margin: 0; padding: 0; + font-family:'Courier New', Courier, monospace; } html @@ -11,7 +12,7 @@ html .navbar ul { - background-color: cyan; + background-color: dodgerblue; display: flex; list-style-type: none; justify-content: center; -- 2.52.0 From 45b292785f6a79241f9cc0a6e1c81d37d440c735 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:53:30 -0500 Subject: [PATCH 4/7] Update index.html added hyperlink to phrack --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c43c7a2..ead1aef 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@

Welcome to Neo-Sekai Club

- We are a multinational, non-profit organization that advocates for the development of Free and Open Source Software (FOSS) and the right to anonymity for software and the internet. Our ideology is based on "The Hacker Manifesto" by Phrack. Our goal is to facilitate access to more secure options for everyday internet use written under open source licenses that respect the end user in their entirety, and to foster creativity among developers of all skill sets. + We are a multinational, non-profit organization that advocates for the development of Free and Open Source Software (FOSS) and the right to anonymity for software and the internet. Our ideology is based on The Hacker Manifesto" by Phrack. Our goal is to facilitate access to more secure options for everyday internet use written under open source licenses that respect the end user in their entirety, and to foster creativity among developers of all skill sets.

-- 2.52.0 From 4dff86c812069814e5112ad11c944db8c2fcf358 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:54:35 -0500 Subject: [PATCH 5/7] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ead1aef..2a39b10 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@

Welcome to Neo-Sekai Club

- We are a multinational, non-profit organization that advocates for the development of Free and Open Source Software (FOSS) and the right to anonymity for software and the internet. Our ideology is based on The Hacker Manifesto" by Phrack. Our goal is to facilitate access to more secure options for everyday internet use written under open source licenses that respect the end user in their entirety, and to foster creativity among developers of all skill sets. + We are a multinational, non-profit organization that advocates for the development of Free and Open Source Software (FOSS) and the right to anonymity for software and the internet. Our ideology is based on "The Hacker Manifesto" by Phrack. Our goal is to facilitate access to more secure options for everyday internet use written under open source licenses that respect the end user in their entirety, and to foster creativity among developers of all skill sets.

-- 2.52.0 From 3d9cd52ff7040f4d0cbbe9beaf78c559ad37799e Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:55:46 -0500 Subject: [PATCH 6/7] Update index_fr.html --- index_fr.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index_fr.html b/index_fr.html index 8064ddf..7fc4dc8 100644 --- a/index_fr.html +++ b/index_fr.html @@ -26,7 +26,7 @@

Bienvenue au Neo-Sekai Club

- Nous somme une organization multinationale, non lucrative qui plaide pour le dévéloppement de logiciel FOSS (Free and Open Source Software) et du droit à l'anonymat pour logiciels et Internet. Notre idéologie est basée sur "The Hacker Manifesto" par Phrack. Notre but est de faciliter l'accès à des options plus securisée pour une utilisation banale sur Internet, De meilleurs licences qui respectent l'utilisateur final et pour et de susciter la créativité pour des développeurs (amateur ou expert) et pour tous genre de passionés du milieu de l'informatique. + Nous somme une organization multinationale, non lucrative qui plaide pour le dévéloppement de logiciel FOSS (Free and Open Source Software) et du droit à l'anonymat pour logiciels et Internet. Notre idéologie est basée sur "The Hacker Manifesto" par Phrack. Notre but est de faciliter l'accès à des options plus securisée pour une utilisation banale sur Internet, De meilleurs licences qui respectent l'utilisateur final et pour et de susciter la créativité pour des développeurs (amateur ou expert) et pour tous genre de passionés du milieu de l'informatique.

-- 2.52.0 From 7f88198787dcc8f7cc78f4d5600663deb7a00ed1 Mon Sep 17 00:00:00 2001 From: tako Date: Sun, 22 Feb 2026 08:56:39 -0500 Subject: [PATCH 7/7] Update index_es.html --- index_es.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index_es.html b/index_es.html index 6c5032c..e0e1dd7 100644 --- a/index_es.html +++ b/index_es.html @@ -26,7 +26,7 @@

Bienvenido a Neo-Sekai Club

- Somos una organización multinacional, sin fines de lucro, que aboga por el desarrollo del software libre y de código abierto y por el derecho al anonimato en el software y el internet. Nuestra ideología se basa en el "The Hacker Manifesto" de Phrack. Nuestro objetivo es facilitar el acceso al software y otras alternativas seguras para el uso cotidiano del internet, priorizando que estén bajo licencias de software libre que respeten la identidad del usuario íntegramente y que fomenten la creatividad de los desarrolladores sin importar sus habilidades. + Somos una organización multinacional, sin fines de lucro, que aboga por el desarrollo del software libre y de código abierto y por el derecho al anonimato en el software y el internet. Nuestra ideología se basa en el "The Hacker Manifesto" de Phrack. Nuestro objetivo es facilitar el acceso al software y otras alternativas seguras para el uso cotidiano del internet, priorizando que estén bajo licencias de software libre que respeten la identidad del usuario íntegramente y que fomenten la creatividad de los desarrolladores sin importar sus habilidades.

-- 2.52.0