Skip to content

Commit

Permalink
better h1 padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-studio committed Oct 20, 2022
1 parent a95a597 commit 6959a68
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ a {
}

h1 {
margin: 1rem 10px;
margin: 1.6rem 0 1rem 10px;
font-size: 1.2rem;
}

Expand All @@ -37,22 +37,25 @@ body {
/* flip layout on horizontal screen */

@media (min-aspect-ratio: 10/8) {
body {
body {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto 1fr;
column-gap: 2rem;
background: #ffffee;
}

#playlist {
h1 {
margin-top: 0;
}
#playlist {
grid-row-start: 1;
grid-row-end: 3;

}

#playlist,
#shownotes {
#playlist,
#shownotes {
width: 100%;
height: 100%;
}
Expand Down

0 comments on commit 6959a68

Please sign in to comment.