1
0
mirror of https://github.com/danbee/persephone-web.git synced 2025-03-04 08:39:07 +00:00

Fonts, grid and other stuff

This commit is contained in:
Daniel Barber 2019-11-19 20:26:35 -05:00
parent 9b9f3de709
commit 1ae649f2f7
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8
3 changed files with 74 additions and 19 deletions

View File

@ -4,15 +4,15 @@ title: Persephone
<header role="banner"> <header role="banner">
<h1>Persephone</h1> <h1>Persephone</h1>
<h2>A modern, open source MPD client for macOS.</h2>
</header> </header>
<main> <main>
<img class="icon" src="/images/icon-512.png" alt=""> <img class="icon" src="/images/icon-512.png" alt="">
<div class="text"> <div class="text">
<p>Persephone is a modern, open source MPD client for macOS. <h3>MP… what?</h3>
<h2>MP… what?</h2>
<p>From the <a href="https://www.musicpd.org" rel="nofollow">website</a>:</p> <p>From the <a href="https://www.musicpd.org" rel="nofollow">website</a>:</p>
@ -28,14 +28,14 @@ title: Persephone
Wikipedia has a Wikipedia has a
<a href="https://en.wikipedia.org/wiki/Music_Player_Daemon" rel="nofollow">more comprehensive description</a>. <a href="https://en.wikipedia.org/wiki/Music_Player_Daemon" rel="nofollow">more comprehensive description</a>.
</p> </p>
<p class="download-section">
<a class="download-button" href="https://github.com/danbee/persephone/releases/download/0.13.0-alpha/Persephone-0.13.0-alpha.zip">↓ Download</a>
</p>
</div> </div>
<picture> <div class="download-section">
<a class="download-button" href="https://github.com/danbee/persephone/releases/download/0.13.0-alpha/Persephone-0.13.0-alpha.zip">⬇ Download</a>
</div>
<picture class="screenshot">
<source srcset="/images/screenshot-dark.png" media="(prefers-color-scheme: dark)"> <source srcset="/images/screenshot-dark.png" media="(prefers-color-scheme: dark)">
<img class="screenshot" src="/images/screenshot-light.png"> <img src="/images/screenshot-light.png">
</picture> </picture>
</main> </main>

View File

@ -7,6 +7,7 @@
content="width=device-width, initial-scale=1, shrink-to-fit=no"> content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Use the title from a page's frontmatter if it has one --> <!-- Use the title from a page's frontmatter if it has one -->
<title><%= current_page.data.title || "Middleman" %></title> <title><%= current_page.data.title || "Middleman" %></title>
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7434852/6168012/css/fonts.css" />
<%= stylesheet_link_tag "site" %> <%= stylesheet_link_tag "site" %>
<%= javascript_include_tag "site" %> <%= javascript_include_tag "site" %>
</head> </head>

View File

@ -1,13 +1,15 @@
$dark-color: #181818;
$light-color: white; $light-color: white;
$dark-color: #181818;
$light-link-color: #253FA1;
$dark-link-color: #75B3ED;
body { body {
background-color: $light-color; background-color: $light-color;
color: $dark-color; color: $dark-color;
font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", font-family: "Gotham A", "Gotham B", sans-serif;
"Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", font-style: normal;
"Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", font-weight: 400;
"Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
padding: 4vw 1rem; padding: 4vw 1rem;
text-align: center; text-align: center;
@ -17,13 +19,40 @@ body {
} }
} }
h1 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 0.5em;
@media (min-width: 25rem) {
font-size: 3rem;
}
@media (min-width: 35rem) {
font-size: 4rem;
}
@media (min-width: 50rem) {
font-size: 5rem;
}
}
main { main {
max-width: 50rem;
margin: 0 auto; margin: 0 auto;
max-width: 50rem;
@media (min-width: 40rem) {
display: grid;
grid-column-gap: 2rem;
grid-template-areas:
"icon text"
"download download"
"screenshot screenshot";
}
} }
a { a {
color: rgba($dark-color, 0.7); color: $light-link-color;
&:focus, &:focus,
&:hover { &:hover {
@ -31,7 +60,7 @@ a {
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
color: rgba($light-color, 0.7); color: $dark-link-color;
&:focus, &:focus,
&:hover { &:hover {
@ -51,18 +80,31 @@ blockquote {
} }
.text { .text {
grid-area: text;
text-align: left; text-align: left;
} }
.icon { .icon {
grid-area: icon;
width: 16rem; width: 16rem;
@media (min-width: 40rem) {
float: left;
}
} }
.screenshot { .screenshot {
width: 100%; display: block;
grid-area: screenshot;
margin: 0 -4.25%;
img {
width: 100%;
}
} }
.download-section { .download-section {
grid-area: download;
margin: 2rem 0; margin: 2rem 0;
text-align: center; text-align: center;
} }
@ -71,12 +113,24 @@ blockquote {
background: $dark-color; background: $dark-color;
border-radius: 0.5rem; border-radius: 0.5rem;
color: $light-color; color: $light-color;
font-weight: 700;
padding: 0.5rem 2rem 0.5rem 1.5rem; padding: 0.5rem 2rem 0.5rem 1.5rem;
text-decoration: none; text-decoration: none;
font-weight: bold;
&:focus,
&:hover {
background: lighten($dark-color, 10%);
color: $light-color;
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
background: $light-color; background: $light-color;
color: $dark-color; color: $dark-color;
&:focus,
&:hover {
background: darken($light-color, 10%);
color: $dark-color;
}
} }
} }