mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 11:23:29 +01:00
improve top styling
This commit is contained in:
parent
8666013866
commit
9f76315d1a
2 changed files with 181 additions and 177 deletions
|
@ -4,15 +4,14 @@
|
|||
<h4>A fun simulation game where you mess with people's lives</h4>
|
||||
|
||||
<div class="container top-container">
|
||||
<h4>Play the demo or buy the game</h4>
|
||||
<div class="row">
|
||||
<div class="col site">
|
||||
<h3>Play the free demo</h3>
|
||||
<a href="https://ellpeck.itch.io/tiny-life">
|
||||
<img src="media/itch.png" alt="itch.io" width="200px" height="auto"></image>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col site">
|
||||
<h3>Get the game</h3>
|
||||
<a href="https://store.steampowered.com/app/1651490/Tiny_Life/">
|
||||
<img src="media/steam.png" alt="Steam" width="200px" height="auto"></image>
|
||||
</a>
|
||||
|
|
355
web/style.css
355
web/style.css
|
@ -1,175 +1,180 @@
|
|||
html {
|
||||
scroll-padding-top: 70px;
|
||||
}
|
||||
|
||||
body {
|
||||
position: relative;
|
||||
font-family: Lato, sans-serif;
|
||||
}
|
||||
|
||||
.navbar-container {
|
||||
max-width: 950px;
|
||||
}
|
||||
|
||||
.top {
|
||||
background-image: url("media/large_background.png");
|
||||
background-size: cover;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.top a:link,
|
||||
.top a:visited {
|
||||
color: lightsteelblue;
|
||||
}
|
||||
|
||||
.top-content {
|
||||
text-align: center;
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.section {
|
||||
width: 95%;
|
||||
max-width: 950px;
|
||||
margin-top: 50px;
|
||||
margin-bottom: 50px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.site {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
border-radius: 5px;
|
||||
margin-bottom: 30px;
|
||||
margin-top: 120px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.link {
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.feature {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.feature-banner {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.feature ul {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.feature-title {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
color: white;
|
||||
background: rgb(0, 0, 0, 0.7);
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
transform: translate(-50%, 0);
|
||||
left: 50%;
|
||||
top: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.feature-title h2 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.devlog {
|
||||
margin-bottom: 20px;
|
||||
min-width: 250px;
|
||||
width: 45%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.devlog-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.devlog-title {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.trailer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
padding-bottom: 56.25%;
|
||||
}
|
||||
|
||||
.trailer iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.roadmap {
|
||||
width: 75%;
|
||||
min-width: 250px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.roadmap-entry {
|
||||
margin: 20px;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.roadmap-entry-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.roadmap-entry-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.roadmap-entry-important {
|
||||
text-align: center;
|
||||
margin-top: 60px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.mailing-list {
|
||||
width: 80%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 40px;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
|
||||
.top-content {
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
.top-container img {
|
||||
max-width: 150px;
|
||||
}
|
||||
|
||||
.top-container h3 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.top-content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
}
|
||||
html {
|
||||
scroll-padding-top: 70px;
|
||||
}
|
||||
|
||||
body {
|
||||
position: relative;
|
||||
font-family: Lato, sans-serif;
|
||||
}
|
||||
|
||||
.navbar-container {
|
||||
max-width: 950px;
|
||||
}
|
||||
|
||||
.top {
|
||||
background-image: url("media/large_background.png");
|
||||
background-size: cover;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.top a:link,
|
||||
.top a:visited {
|
||||
color: lightsteelblue;
|
||||
}
|
||||
|
||||
.top-content {
|
||||
text-align: center;
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.section {
|
||||
width: 95%;
|
||||
max-width: 950px;
|
||||
margin-top: 50px;
|
||||
margin-bottom: 50px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.site {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
border-radius: 5px;
|
||||
margin-bottom: 30px;
|
||||
margin-top: 120px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.link {
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.feature {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.feature-banner {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.feature ul {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.feature-title {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
color: white;
|
||||
background: rgb(0, 0, 0, 0.7);
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
transform: translate(-50%, 0);
|
||||
left: 50%;
|
||||
top: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.feature-title h2 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.devlog {
|
||||
margin-bottom: 20px;
|
||||
min-width: 250px;
|
||||
width: 45%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.devlog-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.devlog-title {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.trailer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
padding-bottom: 56.25%;
|
||||
}
|
||||
|
||||
.trailer iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.roadmap {
|
||||
width: 75%;
|
||||
min-width: 250px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.roadmap-entry {
|
||||
margin: 20px;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.roadmap-entry-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.roadmap-entry-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.roadmap-entry-important {
|
||||
text-align: center;
|
||||
margin-top: 60px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.mailing-list {
|
||||
width: 80%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 40px;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
|
||||
.top-content {
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
.top-container img {
|
||||
max-width: 150px;
|
||||
}
|
||||
|
||||
.top-container h3 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.top-content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.site {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue