Compare commits

..

No commits in common. "3eb9dbaacf4513342fe597b645e17a73b42b942d" and "91cf0df7219c77844b3cee32a1925b9f8afcd811" have entirely different histories.

14 changed files with 14 additions and 35 deletions

View file

@ -1,19 +1,19 @@
[{ [{
"value": "CharacterCreator.jpg", "value": "CharacterCreator",
"text": "Create your own characters with unique personalities and skills and dress them however you like" "text": "Create your own characters with unique personalities and skills and dress them however you like"
}, { }, {
"value": "BuildMode.jpg", "value": "Map",
"text": "Build houses and community spaces like parks and cafés and watch households inhabit them" "text": "Build houses and community spaces like parks and cafés and watch households inhabit them"
}, { }, {
"value": "Gameplay.jpg", "value": "Gameplay",
"text": "Control your household and tell your characters what to do, from cooking food to learning complex skills like programming and painting" "text": "Control your household and tell your characters what to do, from cooking food to learning complex skills like programming and painting"
}, { }, {
"value": "Relationships.jpg", "value": "Relationships",
"text": "Have your characters interact, build relationships, grow families and live unique lives" "text": "Have your characters interact, build relationships, grow families and live unique lives"
}, { }, {
"value": "Travel.jpg", "value": "Lighting",
"text": "Share your creations with the community by exporting lots and households from your game" "text": "Share your creations with the community by exporting lots and households from your game"
}, { }, {
"value": "Modding.png", "value": "Modding",
"text": "Create additional content through the game's built-in C# modding API, like <a href=\"https://github.com/ssblur/IttyMod\">Itty</a> by ssblur" "text": "Create additional content through the game's built-in C# modding API, like <a href=\"https://github.com/ssblur/IttyMod\">Itty</a> by ssblur"
}] }]

View file

@ -6,14 +6,10 @@
{% for item in site.data.screenshots %} {% for item in site.data.screenshots %}
<div class="screenshot"> <div class="screenshot">
<img src="media/screenshots/{{ item.value }}" width="100%" class="screen"> <img src="media/screenshots/{{ item.value }}.png" width="100%" class="screen">
<div class="feature feature-{{ forloop.index0 | modulo: 2 }}"> <div class="feature feature-{{ forloop.index0 | modulo: 2 }}">
<p>{{ item.text }}</p> <p>{{ item.text }}</p>
</div> </div>
</div> </div>
{% endfor %} {% endfor %}
<div class="trailer">
<iframe src="https://www.youtube.com/embed/iw-D7queVUI" title="Tiny Life Trailer" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div> </div>

View file

@ -24,11 +24,7 @@
<a class="link" href="https://press.ellpeck.de/tinylife/">Get Press Kit</a> <a class="link" href="https://press.ellpeck.de/tinylife/">Get Press Kit</a>
</div> </div>
</div> </div>
<div class="top-footer">
<p>▼ Scroll down for more ▼</p>
</div> </div>
</div>
<script> <script>
let x = Math.random() * 100; let x = Math.random() * 100;
let y = Math.random() * 100; let y = Math.random() * 100;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 329 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 385 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 459 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 374 KiB

View file

@ -1,7 +1,6 @@
.top { .top {
background-image: url("media/large_background.png"); background-image: url("media/large_background.png");
background-size: 400%; background-size: 400%;
color: white;
} }
.top a:link, .top a:link,
@ -11,17 +10,11 @@
.top-content { .top-content {
text-align: center; text-align: center;
color: white;
padding-top: 20px; padding-top: 20px;
padding-bottom: 60px; padding-bottom: 60px;
} }
.top-footer {
position: absolute;
bottom: 30px;
left: auto;
right: auto;
}
.section { .section {
width: 95%; width: 95%;
max-width: 950px; max-width: 950px;
@ -93,19 +86,13 @@
display: inline-block; display: inline-block;
} }
.trailer { .changelog img {
margin-top: 60px;
margin-bottom: 40px;
position: relative;
width: 100%; width: 100%;
height: 0;
padding-bottom: 56.25%;
} }
.trailer iframe { .changelog blockquote {
position: absolute; margin-left: 2em;
top: 0; margin-right: 2em;
left: 0; font-style: italic;
width: 100%; font-size: 18px;
height: 100%;
} }