Inital commit

This commit is contained in:
Andrew Lee 2020-09-03 11:16:35 -04:00
commit 2743da9b72
No known key found for this signature in database
GPG key ID: 4DCE67C47836D125
7 changed files with 80 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
assets/images/shiftos_arch.jpeg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

BIN
assets/images/shiftos_phil.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

11
downloads.html Normal file
View file

@ -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>

11
history.html Normal file
View file

@ -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>

19
index.html Normal file
View file

@ -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>

39
style.css Normal file
View file

@ -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;
}