1
0
Fork 0

Initial commit

master
Dustin 2016-05-31 23:50:49 -05:00
commit 8469468db0
6 changed files with 81 additions and 0 deletions

BIN
ebonfire.xcf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

81
static/index.html Normal file
View File

@ -0,0 +1,81 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Ebon Fire</title>
<style>
html, body {
background-color: #000000;
color: #ffffff;
margin: .5em;
}
body {
font-size: 20pt;
}
#firelogo {
height: 200px;
background-position: center;
background-image: url("images/ebonfire-200.png");
background-repeat: no-repeat;
}
#quote {
padding: 1em;
}
@media (min-width: 480px) {
#firelogo {
width: 200px;
float: right;
}
#quote {
margin-right: 200px;
}
}
@media (min-width: 768px) {
body {
font-size: 28pt;
}
#firelogo {
width: 300px;
height: 300px;
background-image: url("images/ebonfire-300.png");
}
#quote {
margin-right: 400px;
}
}
@media (min-width: 1024px) {
body {
font-size: 42pt;
}
#firelogo {
width: 400px;
height: 400px;
background-image: url("images/ebonfire-400.png");
}
#quote {
margin-right: 400px;
}
}
@media (min-width: 1200px) {
body {
font-size: 48pt;
}
#firelogo {
width: 600px;
height: 600px;
background-image: url("images/ebonfire-600.png");
}
#quote {
margin-right: 600px;
}
}
</style>
</head>
<body>
<div id="firelogo"></div>
<div id="quote">For the Wrath will rise and consume the Night, and Time itself
will burn in Ebon Fire.</div>
</body>
</html>