diff options
| author | Andrew Lee <[email protected]> | 2020-09-03 11:16:35 -0400 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2020-09-03 11:16:35 -0400 |
| commit | 2743da9b7215636d584a839cf33ce28e9da0c849 (patch) | |
| tree | 709f2038cbf62b1c30c111225fc990f77085064e | |
| download | shiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.tar.gz shiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.tar.bz2 shiftos-archive-website-2743da9b7215636d584a839cf33ce28e9da0c849.zip | |
Inital commit
| -rwxr-xr-x | assets/images/ShiftOS 2017 Logo.png | bin | 0 -> 36705 bytes | |||
| -rwxr-xr-x | assets/images/shiftos_arch.jpeg | bin | 0 -> 347830 bytes | |||
| -rwxr-xr-x | assets/images/shiftos_phil.png | bin | 0 -> 163821 bytes | |||
| -rw-r--r-- | downloads.html | 11 | ||||
| -rw-r--r-- | history.html | 11 | ||||
| -rw-r--r-- | index.html | 19 | ||||
| -rw-r--r-- | style.css | 39 |
7 files changed, 80 insertions, 0 deletions
diff --git a/assets/images/ShiftOS 2017 Logo.png b/assets/images/ShiftOS 2017 Logo.png Binary files differnew file mode 100755 index 0000000..8839fd4 --- /dev/null +++ b/assets/images/ShiftOS 2017 Logo.png diff --git a/assets/images/shiftos_arch.jpeg b/assets/images/shiftos_arch.jpeg Binary files differnew file mode 100755 index 0000000..9441b3c --- /dev/null +++ b/assets/images/shiftos_arch.jpeg diff --git a/assets/images/shiftos_phil.png b/assets/images/shiftos_phil.png Binary files differnew file mode 100755 index 0000000..ca6aa24 --- /dev/null +++ b/assets/images/shiftos_phil.png 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>© 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 |
