Simple website stuff.

This commit is contained in:
Tim Sarbin 2019-10-26 16:25:26 -04:00
parent 563f154a44
commit 8bfcc220cb
4 changed files with 109 additions and 3 deletions

View File

@ -1,6 +1,6 @@
language: go
go:
- 1.12
- 1.13.3
before_install:
- sudo apt-get -y install libx11-dev mesa-common-dev libglfw3-dev libgles2-mesa-dev libasound2-dev
script: buildci.sh

BIN
docs/diablo.woff Normal file

Binary file not shown.

View File

@ -1,13 +1,43 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>OpenDiablo 2</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
We need a website.
<h1>
OPENDIABLO 2
<span>An open-source implementation of Diablo2</span>
<span>
<a href="https://www.github.com/essial/OpenDiablo2" target="_blank">Github Project Page</a>
</span>
</h1>
<div class="paragraph">
<span>
OpenDiablo2 is an ARPG game engine in the same vein of the 2000's games, and supports playing Diablo 2. The engine is written in golang and is cross platform. However, please note that this project does not ship with the assets or content required to play Diablo 2. You must have a legally purchased copy of Diablo 2 and its expansion Lord of Destruction installed on your computer in order to run that game on this engine. If you have an original copy of the disks, those files should work fine as well.
</span>
<span>
Currently we are working on features necessary to play Diablo 2 in its entireity, but will then expand with tools and plugin support to allow modding, as well as writing completely new games with the engine.
</span>
<span>
We are in the process of moving to a go based engine. We are taking good bits from the original C# base and migrating it over to the new engine code.
</span>
<span>
Please note that this game is neither developed by, nor endorsed by Blizzard or its parent company Activision.
</span>
<span>
Diablo 2 and its content is ©2000 Blizzard Entertainment, Inc. All rights reserved. Diablo and Blizzard Entertainment are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries.
</span>
<span>
ALL OTHER TRADEMARKS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS.
</span>
</div>
<hr />
<h2>Screenshots</h2>
<img class="imgFrame" src="MainMenuSS.png" />
</body>
</html>

76
docs/style.css Normal file
View File

@ -0,0 +1,76 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'Diablo Heavy';
font-style: normal;
font-weight: normal;
src: local('Diablo Heavy'), url('diablo.woff') format('woff');
}
body {
font-family:'Diablo Heavy';
background-color: #111;
color: #fff;
text-align:center;
text-shadow: 0px 0px 6px #000;
}
hr {
margin: 0;
padding: 0;
border-color: #000;
box-shadow: 0px 0px 4px #f00;
}
h1 {
font-size: 5em;
text-shadow: 0px 0px 6px #c00;
}
h1 span {
font-size: 0.2em;
display: block;
margin: 8px 0;
}
h2 {
font-size: 2.5em;
text-shadow: 0px 0px 4px #c00;
}
img.imgFrame {
display: inline-block;
clear: bloth;
border-radius: 6px;
box-shadow: 0px 0px 8px #000;
margin: 6px 0px;
}
div.paragraph {
text-align: left;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
display: block;
font-size: 1.2em;
margin-bottom: 24px;
}
div.paragraph span {
display: block;
padding: 12px 0;
}
div.paragraph span::first-letter {
font-size: 1.5em;
}
a {
text-decoration: none;
color: #ffa;
}
a:hover {
text-decoration: underline;
color: #faa;
}