diff --git a/index.html b/index.html index be640f9..e3dd9ea 100644 --- a/index.html +++ b/index.html @@ -1,50 +1,61 @@ - + + + + + No Chromium - + + - -
- + +

What is Chromium?

- Chromium is a web browser developed by Google. Many modern web browsers - use its codebase and extened upon it, for example: + Chromium is a web browser developed by Google. Many modern web browsers + use its codebase and extend upon it, for example:

- more...

Why is this a bad thing?

- Chromium based browsers dominate the market. This means that any changes - Google makes to the Chromium code base are also present in the browsers that build on it. - As Chromium based browsers are the majority, websites have to adapt. - This also forces non chromium browsers like Firefox to implement these changes. - This gives Google the power to steer the web in a direction they benefit from the most. + Chromium based browsers dominate the market. This means that any changes + Google makes to the Chromium code base are also present in the browsers + that build on it. As Chromium based browsers are the majority, websites + have to adapt. This also forces non chromium browsers like Firefox to + implement these changes. This gives Google the power to steer the web in + a direction they benefit from the most.

Examples

What can I do

- You should use alternative browsers like Firefox - or, even better, LibreWolf + You should use alternative browsers like + Firefox or, even + better, LibreWolf

-
+ + \ No newline at end of file diff --git a/redirect.html b/redirect.html index 64b3ea2..2d815d6 100644 --- a/redirect.html +++ b/redirect.html @@ -1,18 +1,22 @@ + + + + No Chromium - + +
- + \ No newline at end of file diff --git a/style.css b/style.css index bb83788..9ea8603 100644 --- a/style.css +++ b/style.css @@ -1,13 +1,26 @@ -body { - font-family: Noto Sans, sans serif; - min-height: 1vh; +html { + font-family: Noto Sans, sans-serif; + background-color: #f1f1f1; + color: #0f0f0f; + line-height: 1.5rem; } + +@media (prefers-color-scheme: dark) { + html { + background-color: #0f0f0f; + color: #f1f1f1; + } +} + .banner { - margin: 10%; font-size: 2em; + margin: 0 auto 4rem; + text-align: center; } + .content { - margin: 0 10%; + margin: 0 auto; + max-width: 800px; } .container {