111 lines
3.4 KiB
Plaintext
111 lines
3.4 KiB
Plaintext
<!doctype html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>Little Alchemy 2 Error Page</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet" />
|
|
<style>
|
|
html {
|
|
color: #222;
|
|
font-size: 1em;
|
|
line-height: 1.4
|
|
}
|
|
::-moz-selection {
|
|
background: #b3d4fc;
|
|
text-shadow: none
|
|
}
|
|
::selection {
|
|
background: #b3d4fc;
|
|
text-shadow: none
|
|
}
|
|
body {
|
|
font-family:'Source Sans Pro', sans-serif;
|
|
background-color: #380028;
|
|
color: #ead6b7;
|
|
margin: 0;
|
|
font-size: 15px
|
|
}
|
|
.wrapper {
|
|
margin: 0 auto
|
|
}
|
|
.header-image {
|
|
display: block;
|
|
width: 400px;
|
|
margin: 12px auto
|
|
}
|
|
h3 {
|
|
text-align: center;
|
|
color: red;
|
|
font-size: 20px;
|
|
margin-top: 50px;
|
|
margin-bottom: 35px;
|
|
}
|
|
h3 strong {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
}
|
|
@media only screen and (max-width: 423px) {
|
|
.header-image {
|
|
width: 90%;
|
|
width: calc(100% - 24px)
|
|
}
|
|
}
|
|
.button {
|
|
background-color: #faa620;
|
|
color: #260026;
|
|
font-weight: bold;
|
|
font-size: 26px;
|
|
text-align: center;
|
|
padding: 18px;
|
|
margin-bottom: 36px;
|
|
display: block;
|
|
text-decoration: none
|
|
}
|
|
.button:hover {
|
|
background-color: rgba(250, 166, 32, 0.9)
|
|
}
|
|
.footer .button {
|
|
max-width: 300px;
|
|
margin: 50px auto 50px auto
|
|
}
|
|
@media only screen and (max-width: 423px) {
|
|
.footer .button {
|
|
max-width: 85%;
|
|
box-sizing: border-box
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<div class="container">
|
|
<img class="header-image" src="https://littlealchemy2.com/static/img/logo.svg" alt="Little Alchemy 2" />
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<h3>
|
|
<strong>Error 404</strong><br />
|
|
Oh no! Page you are looking for does not exist!
|
|
<br />
|
|
Try links below.
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div class="footer">
|
|
<a class="button" href="https://littlealchemy2.com">Little Alchemy 2 game</a>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<a class="button" href="https://hints.littlealchemy2.com">Little Alchemy 2<br />Official Hints</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|