mirror of
https://github.com/Alee14/shiftos-website.git
synced 2025-01-22 20:02:14 +00:00
Inital commit
This commit is contained in:
commit
2743da9b72
7 changed files with 80 additions and 0 deletions
BIN
assets/images/ShiftOS 2017 Logo.png
Executable file
BIN
assets/images/ShiftOS 2017 Logo.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
assets/images/shiftos_arch.jpeg
Executable file
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
BIN
assets/images/shiftos_phil.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 160 KiB |
11
downloads.html
Normal file
11
downloads.html
Normal 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
11
history.html
Normal 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
19
index.html
Normal 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>© 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
39
style.css
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue