Skip to content

Commit

Permalink
text
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalabasa committed Dec 30, 2023
1 parent b62bda6 commit a468382
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Binary file added src/site/music/conversations/art.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/site/music/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ <h2 class="section-title">Visualisations</h2>
</section>
<section class="section">
<h2 class="section-title">Conversations EP (2017)</h2>
<responsive-img class="song-image" :src="url('conversations/art.jpg')" spec="195" />
<p><strong>Conversations</strong> is a four-piece composition of mellow beats, jazz harmony, and mild piano improvisations. Made with <text-link href="https://lmms.io/">LMMS</text-link> and Audacity.</p>
<p>Here are two of them:</p>
<div class="song-card-grid">
<song-card
:audiosrc="url('conversations/Just wanted to know.mp3')"
Expand Down Expand Up @@ -109,9 +112,22 @@ <h2 class="section-title">Leftovers from the past</h2>
}

.song-card-grid {
clear: both;
margin: 30px 0 0;
display: grid;
grid-template-columns: repeat(auto-fit, calc(min(585px, 100%)));
gap: 30px;
}

.song-image {
margin: 0 30px 30px 0;
border-radius: 12px;
width: 100%;
max-width: 195px;
}
@media (min-width: 600px) {
.song-image {
float: left;
}
}
</style>

0 comments on commit a468382

Please sign in to comment.