This commit is contained in:
parent
82b46f9317
commit
e2f202efbd
8 changed files with 101 additions and 0 deletions
BIN
tinylife/favicon.ico
Normal file
BIN
tinylife/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 813 B |
70
tinylife/index.html
Normal file
70
tinylife/index.html
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<title>Tiny Life</title>
|
||||||
|
<meta name="author" content="Ellpeck">
|
||||||
|
<meta name="description" content="A fun simulation game where you mess with people's lives">
|
||||||
|
<meta name="keywords" content="Ellpeck, Tiny Life, Steam, itch, itch.io, Sandbox, Life Simulator, Simulator, Sim, Isometric, Pixelart, Pixel Art, Retro">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
|
<meta property="og:title" content="Tiny Life">
|
||||||
|
<meta property="og:description" content="A fun simulation game where you mess with people's lives">
|
||||||
|
<meta property="og:image" content="https://ellpeck.de/tinylife/media/icon.png">
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:site" content="@Ellpeck">
|
||||||
|
<meta name="twitter:creator" content="@Ellpeck">
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XC0W9LJMCJ"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
|
||||||
|
function gtag() {
|
||||||
|
dataLayer.push(arguments);
|
||||||
|
}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', 'G-XC0W9LJMCJ');
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="d-flex justify-content-md-center align-items-center vh-100">
|
||||||
|
<div class="main">
|
||||||
|
<image src="media/logo.png" width="100%" height="auto" alt="Tiny Life"></image>
|
||||||
|
<h4>A fun simulation game where you mess with people's lives</h4>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col site">
|
||||||
|
<h2>Get the free alpha</h2>
|
||||||
|
<a href="https://ellpeck.itch.io/tiny-life">
|
||||||
|
<image src="media/itch.png" alt="itch.io" width="200px" height="auto"></image>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col site">
|
||||||
|
<h2>Wishlist the game</h2>
|
||||||
|
<a href="">
|
||||||
|
<image src="media/steam.png" alt="Steam" width="200px" height="auto"></image>
|
||||||
|
</a>
|
||||||
|
<p><em>Coming soon</em></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="footer"><a href="https://git.ellpeck.de/Ellpeck/Web">© 2021 Ellpeck</a> – <a href="https://ellpeck.de/#impressum">Impressum</a> – <a href="https://ellpeck.de/#privacy">Privacy</a></p>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
BIN
tinylife/media/background.png
Normal file
BIN
tinylife/media/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
BIN
tinylife/media/icon.png
Normal file
BIN
tinylife/media/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 813 B |
BIN
tinylife/media/itch.png
Normal file
BIN
tinylife/media/itch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
tinylife/media/logo.png
Normal file
BIN
tinylife/media/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
tinylife/media/steam.png
Normal file
BIN
tinylife/media/steam.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5 KiB |
31
tinylife/style.css
Normal file
31
tinylife/style.css
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
body {
|
||||||
|
background-image: url("media/background.png");
|
||||||
|
background-repeat: repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer a {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
padding-top: 60px;
|
||||||
|
padding-bottom: 160px;
|
||||||
|
}
|
Loading…
Reference in a new issue