-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
408 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# LICENSE | ||
|
||
Unless otherwise stated, all content on this site and in | ||
this repository is licensed under the Creative Commons CC0 1.0 Universal License. | ||
|
||
The following items represent trademarks or copyrighted material | ||
and are thus excempt from this repository's licensing: | ||
|
||
- static/avatar.png | ||
- static/banner.png | ||
- static/bluesky.svg ([Source](https://bsky.app/)) | ||
- static/codeberg.svg ([Source](https://codeberg.org/)) | ||
- static/discord.svg ([Source](https://discord.com/branding)) | ||
- static/github.svg ([Source](https://github.com/logos)) | ||
- static/keyoxide.png ([Source](https://keyoxide.org/)) | ||
- static/lastfm.svg ([Source](https://www.last.fm/brand)) | ||
- static/spotify.svg ([Source](https://developer.spotify.com/branding-guidelines/)) | ||
- static/telegram.svg ([Source](https://telegram.org/brand_guidelines)) | ||
- static/twitter.svg ([Source](https://about.twitter.com/en_us/company/brand-resources.html)) | ||
- static/wetdry.world.png ([Source](https://wetdry.world/)) | ||
- static/spotify-test-artwork.png | ||
|
||
The following items come from Google's Material Design Icons | ||
and are licensed under the Apache License Version 2.0: | ||
|
||
- static/no-download.svg | ||
- static/download.svg | ||
- static/web.svg | ||
|
||
The following items are direct derivatives of [surfbryce/beautiful-lyrics](https://github.com/surfbryce/beautiful-lyrics) | ||
and thus licensed under the MIT License: | ||
|
||
- src/lib/beautiful-lyrics/* | ||
- src/components/parts/SpotifyContainer.svelte | ||
- src/components/parts/lyrics/* | ||
|
||
The following items are imported from Google Fonts, and despite appearing on | ||
the website, should not be considered part of this repository or its license: | ||
|
||
- [Google Fonts - Rubik](https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,700;1,400&display=swap) | ||
|
||
Any externally loaded content (such as images, fonts, etc.) is not covered by this license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<script lang="ts"> | ||
import palette from "$lib/colors"; | ||
export let bg = palette.colors.surface1.hex; | ||
export let style = ""; | ||
</script> | ||
|
||
<style lang="scss"> | ||
// this is a block, a small container with some padding and a border radius that can be used to wrap other elements. it will not be the main element of a page, but rather a child of one. | ||
.block { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 15px; | ||
padding: 20px; | ||
border-radius: 30px; | ||
background: var(--bg); | ||
color: var(--fg); | ||
fill: var(--fg); | ||
font-size: 20px; | ||
max-width: calc(100% - 80px); | ||
} | ||
span { | ||
margin: 0px; | ||
} | ||
</style> | ||
|
||
<div class="block" style="--bg:{bg};--fg:{palette.colors.text.hex};{style}"> | ||
<slot> | ||
|
||
</slot> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<style lang="scss"> | ||
// center the content on the page | ||
#root-container { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 50px; | ||
align-items: center; | ||
justify-content: center; | ||
@media (max-width: 768px) { | ||
min-height: calc(100vh - 50px); | ||
max-width: calc(100vw - 50px); | ||
padding: 25px; | ||
} | ||
@media (min-width: 768px) { | ||
min-height: calc(100vh - 100px); | ||
max-width: calc(100vw - 100px); | ||
padding: 50px; | ||
} | ||
position: absolute; | ||
} | ||
</style> | ||
|
||
<div id="root-container"> | ||
<slot></slot> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
// hi` | ||
</script> | ||
|
||
<style lang="scss"> | ||
#lyrics-container { | ||
display: flex; | ||
flex-direction: column; | ||
min-height: 215px; | ||
align-items: flex-start; | ||
} | ||
</style> | ||
|
||
|
||
|
||
<div id="lyrics-container"> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.