82 lines
1.2 KiB
HTML
82 lines
1.2 KiB
HTML
<!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>
|