aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2020-09-03 11:16:35 -0400
committerAndrew Lee <[email protected]>2020-09-03 11:16:35 -0400
commit2743da9b7215636d584a839cf33ce28e9da0c849 (patch)
tree709f2038cbf62b1c30c111225fc990f77085064e
downloadshiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.tar.gz
shiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.tar.bz2
shiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.zip
Inital commit
-rwxr-xr-xassets/images/ShiftOS 2017 Logo.pngbin0 -> 36705 bytes
-rwxr-xr-xassets/images/shiftos_arch.jpegbin0 -> 347830 bytes
-rwxr-xr-xassets/images/shiftos_phil.pngbin0 -> 163821 bytes
-rw-r--r--downloads.html11
-rw-r--r--history.html11
-rw-r--r--index.html19
-rw-r--r--style.css39
7 files changed, 80 insertions, 0 deletions
diff --git a/assets/images/ShiftOS 2017 Logo.png b/assets/images/ShiftOS 2017 Logo.png
new file mode 100755
index 0000000..8839fd4
--- /dev/null
+++ b/assets/images/ShiftOS 2017 Logo.png
Binary files differ
diff --git a/assets/images/shiftos_arch.jpeg b/assets/images/shiftos_arch.jpeg
new file mode 100755
index 0000000..9441b3c
--- /dev/null
+++ b/assets/images/shiftos_arch.jpeg
Binary files differ
diff --git a/assets/images/shiftos_phil.png b/assets/images/shiftos_phil.png
new file mode 100755
index 0000000..ca6aa24
--- /dev/null
+++ b/assets/images/shiftos_phil.png
Binary files differ
diff --git a/downloads.html b/downloads.html
new file mode 100644
index 0000000..adbf7cf
--- /dev/null
+++ b/downloads.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>ShiftOS: Downloads</title>
+</head>
+<body>
+
+</body>
+</html> \ No newline at end of file
diff --git a/history.html b/history.html
new file mode 100644
index 0000000..e9b4808
--- /dev/null
+++ b/history.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>ShiftOS: History/Origins</title>
+</head>
+<body>
+
+</body>
+</html> \ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..69c6d55
--- /dev/null
+++ b/index.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="style.css">
+ <title>ShiftOS: The Archive</title>
+</head>
+<body>
+ <div class="center">
+ <img src="assets/images/ShiftOS 2017 Logo.png" alt="ShiftOS Logo">
+ <h1>Welcome to this website!</h1>
+ <a href="history">History/Origins</a> | <a href="downloads">Downloads</a>
+ </div>
+ <footer>
+ <p><b>&copy; Copyright 2013-2020 ShiftOS. Game originally made by Philip Adams.<br/>Website made by Andrew Lee.</b></p>
+ </footer>
+</body>
+</html> \ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..656c2bf
--- /dev/null
+++ b/style.css
@@ -0,0 +1,39 @@
+body {
+ font-family: Consolas, open-sans;
+ background: #333333;
+ color: white;
+}
+
+.center {
+ text-align: center;
+}
+
+a:link {
+ color: white;
+ background-color: transparent;
+ text-decoration: none;
+ font-size: 20px;
+}
+
+a:visited {
+ color: gray;
+ background-color: transparent;
+ text-decoration: none;
+}
+
+p {
+ font-size: 20px;
+}
+
+footer {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ text-align: center;
+ width: 100%;
+}
+
+img {
+ width: 50%;
+ height: auto;
+ } \ No newline at end of file