diff --git a/src/assets/astro.svg b/src/assets/astro.svg deleted file mode 100644 index 8cf8fb0..0000000 --- a/src/assets/astro.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/assets/background.svg b/src/assets/background.svg deleted file mode 100644 index 4b2be0a..0000000 --- a/src/assets/background.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/public/assets/images/ShiftOS 2017 Logo.png b/src/assets/logo.png similarity index 100% rename from public/assets/images/ShiftOS 2017 Logo.png rename to src/assets/logo.png diff --git a/src/pages/history.md b/src/pages/history.md index fdd06dd..3d4d270 100644 --- a/src/pages/history.md +++ b/src/pages/history.md @@ -1,10 +1,11 @@ --- -title: "ShiftOS: History/Origins" +title: "ShiftOS: History" description: ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on Arch Linux. He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. layout: ../layouts/Page.astro +# TODO: Replace this with the doc version --- -# ShiftOS History/Origins +# ShiftOS History If you have anything to add, feel free to make a [pull request](https://github.com/Alee14/shiftos-website). [Return to homepage](/) @@ -15,7 +16,7 @@ If you have anything to add, feel free to make a [pull request](https://github.c ![ShiftOS 2013 Logo](/assets/images/shiftos_phil.png) ShiftOS’ Logo 2013-2016(?) -# Origins (Phil 0.0.x era) +# Origins ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on [Arch Linux](https://web.archive.org/web/20140913172140/https://bbs.archlinux.org/viewtopic.php?id=169391). He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. The plans for the game at the time was when someone called DevX hijacks your computer and it gets wiped. You have a blank operating system, and you have to earn codepoints in ShiftOS. Once you buy Gray and play Pong and someone called MF (known as Maureen Fenn) he tells you a secret program called “Shiftnet” and he talks about what it is and after you receive it you get the Shiftnet which is like its own internet. The point of the game at the time is to go from a full screen terminal to a graphical interface with programs and a customizable user interface. # Community During this time Phil made a forum which is for the community to share skins and receive feedback. In ShiftOS 0.0.8 Beta 1 Philip steps down as developer of ShiftOS and handed development over to someone and eventually made it open source. Then Michael decided to step in to become the lead developer of ShiftOS but then things got worse during late-2014 (or early-2015?), the developers of ShiftOS were debating about changing its programming language but they changed their mind about it. Michael decided to restart ShiftOS and they called it ShiftOS-Next. diff --git a/src/pages/index.astro b/src/pages/index.astro index 1aafb88..fbdd1c2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,17 +1,21 @@ --- +import { Image } from 'astro:assets'; +import logo from "../assets/logo.png"; import Layout from '../layouts/Layout.astro'; ---
- +

ShiftOS: The Archive

ShiftOS was a game developed by Philip Adams and other developers. The original goal was to go from a bare terminal to a graphical user interface with full desktop features.

- History/Origins | Downloads | YouTube Channel +
diff --git a/src/styles/style.css b/src/styles/style.css index 2f5d005..737c6fc 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -1,7 +1,7 @@ @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap'); body { font-family: "JetBrains Mono", monospace; - background: #333333; + background: #252525; color: white; } @@ -18,7 +18,6 @@ body { a { color: #00e600; text-decoration: none; - font-size: 20px; } a:hover { @@ -29,9 +28,13 @@ a:active { color: #009400; } +.nav { + font-size: 1.2em; + font-weight: bold; +} p { - font-size: 20px; + font-size: 1.1em; } footer { @@ -45,4 +48,4 @@ footer { img.logo { width: 50%; height: auto; - } +}