Compare commits

...

2 Commits

Author SHA1 Message Date
1ba00b087d Basic structure for song-list
All checks were successful
Build / build (push) Successful in 5m30s
2024-02-06 18:08:40 +01:00
9a64cb55a6 Song styling in SCSS 2024-02-06 18:04:50 +01:00
3 changed files with 93 additions and 22 deletions

View File

@ -1,7 +1,15 @@
$col-white: #fff;
$col-black: #181818;
body {
margin: 0;
background-color: #d8d8d8;
color: #181818;
background-color: $col-white;
color: $col-black;
}
table {
white-space: nowrap;
}
.song {
@ -24,16 +32,16 @@ body {
.chorus {
position: relative;
}
.chorus:before {
content: "";
position: absolute;
left: -1em;
display: block;
height: 100%;
width: 2px;
background-color: #181818;
&:before {
content: "";
position: absolute;
left: -1em;
display: block;
height: 100%;
width: 2px;
background-color: $col-black;
}
}
.tab {
@ -46,21 +54,21 @@ body {
display: inline-block;
padding: .25em .5em;
background-color: #bbb;
color: #181818;
color: $col-black;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #181818;
color: #d8d8d8;
background-color: $col-black;
color: $col-white;
}
.chorus:before {
background-color: #d8d8d8;
background-color: $col-white;
}
.comment {
background-color: #585858;
color: #d8d8d8;
color: $col-white;
}
}

View File

@ -1,5 +1,48 @@
$width-mobile: 900px;
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
main.songs {
display: grid;
grid-template-columns: 1fr 3fr;
gap: 1em;
max-width: 50em;
margin: 0 auto;
padding: 1em;
@media only screen and (max-width: $width-mobile) {
grid-template-columns: 1fr;
}
.filters {
// ...
}
.song-list {
display: grid;
gap: 1em;
&>div {
display: flex;
justify-content: space-between;
.meta .title {
font-weight: bold;
}
.links {
display: flex;
gap: .5em;
}
}
}
}
iframe.song {

View File

@ -8,13 +8,33 @@
<link rel="icon" href="favicon.svg">
</head>
<body>
{% block content %}
<ul>
{% block content %}
<main class="songs">
<section class="filters">
FILTERS
</section>
<section class="song-list">
{% for song in section.pages %}
<li><a href="{{ song.permalink }}">{{ song.title }}</a></li>
<div>
<div class="meta">
<div class="title">{{ song.title }}</div>
{% if song.taxonomies["artist"] %}
<div class="artist">{{ song.taxonomies["artist"][0] }}</div>
{% endif %}
</div>
<div class="links">
<a href="{{ song.permalink }}">html</a>
{% for asset in song.assets %}
{% if asset is matching(song.slug~"[.](pdf)$") %}
<a href="{{ asset }}">pdf</a>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</ul>
{% endblock %}
{% block script %}{% endblock %}
</section>
</main>
{% endblock %}
{% block script %}{% endblock %}
</body>
</html>