Updated theme. Updated scss to account for theme changes. Added yuzu-specific layouts for header and sidebar.

This commit is contained in:
Chris 2018-01-04 18:11:48 -05:00
parent 1efca00b38
commit 578e0e65d0
9 changed files with 42 additions and 4 deletions

View file

@ -9,11 +9,12 @@ paginate = 10
[params]
GithubURL = "https://github.com/yuzu-emu/yuzu"
ProjectName = "yuzu emulator project"
[Languages]
[Languages.en]
title = "Yuzu"
tagline = "Experimental Nintendo Switch Emulator"
title = "yuzu"
tagline = "An experimental Nintendo Switch Emulator"
description = "Yuzu is a highly experimental open-source emulator for the Nintendo Switch."
weight = 1

View file

@ -0,0 +1,24 @@
<section id="homepage-hero" class="hero container is-primary">
<div class="hero-body">
<div class="columns">
<!-- Left panel -->
<div class="column is-5">
<h1 class="title">{{ .Site.Title }}</h1>
<h2 class="subtitle">{{ .Site.Params.Tagline }}</h2>
<a class="button is-medium is-inverted" href="{{ .Site.Params.GithubURL }}">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Source Code</span>
</a>
</div>
<!-- Right panel -->
<div class="column is-7">
<figure class="image is-16by9">
<img src="{{ .Site.BaseURL}}/images/jumbotron.png" />
</figure>
</div>
</div>
</div>
</section>

View file

@ -0,0 +1,2 @@
<h4 class="is-size-4">Twitter Feed</h4>
<p>No tweets yet, check back soon!</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.1 KiB

@ -1 +1 @@
Subproject commit 2bc248dd03ba59326a4ab451c8c4d78c9672f27b
Subproject commit d4433a4244538e0a72c3c359e7d2db7bed564274

View file

@ -0,0 +1,7 @@
$navbar-height: 64px;
$body-background-color: #e5e5e5;
$footer-background-color: $body-background-color;
#homepage-hero {
background-image: url(../images/rays.svg);
}

View file

@ -1,2 +1,3 @@
@import "./shared.scss";
@import "./yuzu.scss";
@import "./node_modules/bulma/bulma.sass";

View file

@ -1 +1,2 @@
$primary: #696969;
$primary: #696969;
$navbar-item-hover-color: purple;