diff --git a/web/src/templates/base.html b/web/src/templates/base.html index 360c6c7..aa9fbbd 100644 --- a/web/src/templates/base.html +++ b/web/src/templates/base.html @@ -5,10 +5,26 @@ @import url("https://styles.alv.cx/base.css"); @import url("https://styles.alv.cx/modules/darkmode.css"); +:root { + --light: var(--colorscheme-light); +} + .messagetypeinfo { background-color: var(--blue); } .messagetypeerror { background-color: var(--red); } .messagetypewarning { background-color: var(--yellow); } +input, select { + background-color: var(--colorscheme-light); + color: var(--colorscheme-dark); + padding: 0.5em; + border: 0.1em solid var(--colorscheme-dark); + border-radius: 0.3em; +} + +a, a:visited { + color: #1db954; +} + #message { padding: 1em; } {% block title %}{% endblock %} diff --git a/web/src/templates/delete.html b/web/src/templates/delete.html index 3800ceb..49c05ac 100644 --- a/web/src/templates/delete.html +++ b/web/src/templates/delete.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}rolling_liked | delete a playlist{% endblock %} +{% block title %}heartbeats | delete a playlist{% endblock %} {% block body %}

delete a playlist

diff --git a/web/src/templates/index_authorised.html b/web/src/templates/index_authorised.html index 6d6754c..f6dcd2e 100644 --- a/web/src/templates/index_authorised.html +++ b/web/src/templates/index_authorised.html @@ -1,29 +1,26 @@ {% extends "base.html" %} -{% block title %}rolling_liked{% endblock %} +{% block title %}heartbeats for spotify{% endblock %} {% block body %} -

rolling_liked

+ +

heartbeats for spotify

+

create a playlist

- create a - playlist called

-

- which always has the most recent

- +

+ +

number of tracks/days +

- from my spotify liked songs playlist +


-
-
-
- delete a playlist - logout
+ +

delete a playlist, logout

{% endblock %} diff --git a/web/src/templates/index_unauthorised.html b/web/src/templates/index_unauthorised.html index 862f919..aadda80 100644 --- a/web/src/templates/index_unauthorised.html +++ b/web/src/templates/index_unauthorised.html @@ -1,7 +1,7 @@ {% extends "base.html" %} -{% block title %}rolling_liked{% endblock %} +{% block title %}heartbeats for spotify{% endblock %} {% block body %} -

rolling_liked

+

heartbeats for spotify

login with spotify

{% endblock %}