diff --git a/idre/static/css/base.css b/idre/static/css/base.css index 09d3080..91e9438 100644 --- a/idre/static/css/base.css +++ b/idre/static/css/base.css @@ -54,31 +54,49 @@ body { bottom: 0; right: 0; width: 100%; - background: rgba(0, 0, 0, 0.4); + background: rgba(0, 0, 0, 0.5); } .release-infos { position: relative; display: flex; flex-flow: column nowrap; - justify-content: center; - align-items: center; + justify-content: end; + align-items: left; padding: 1em; + text-align: left; font-family: "Neuton", serif; - text-align: center; text-shadow: 0px 0px 4px #000000; } .release-infos .title { margin: 0; - font-size: 1.5em; + font-size: 1.3em; line-height: 1.1em; } .release-infos .contributors, .release-infos .extras { margin: 0; - font-size: 1.2em; + font-size: 1em; +} + +.release-links { + position: absolute; + bottom: 0.5em; + right: 0.5em; + height: 1.5em; + width: 100%; + display: flex; + justify-content: right; + gap: 0.5em; + z-index: 1; +} + +.release-link img { + max-width: 1.5em; + border: 1px solid white; + border-radius: 0.5em; } @media screen and (min-width: 992px) { @@ -98,8 +116,11 @@ body { } .release-infos { + justify-content: center; + align-items: center; padding: 2em; height: 80%; + text-align: center; } .release-infos .title { @@ -112,19 +133,15 @@ body { } .release-links { - position: absolute; - bottom: -1.5em; + bottom: -1em; + right: unset; height: 3em; - width: 100%; - display: flex; justify-content: center; - gap: 0.5em; } .release-link img { max-width: 3em; border: 2px solid white; - border-radius: 0.5em; } } diff --git a/idre/static/img/bandcamp-button-square-aqua-128.png b/idre/static/img/bandcamp-button-square-aqua-128.png deleted file mode 100644 index cec2a47..0000000 Binary files a/idre/static/img/bandcamp-button-square-aqua-128.png and /dev/null differ diff --git a/idre/static/img/bandcamp-button-square-black-128.png b/idre/static/img/bandcamp-button-square-black-128.png new file mode 100644 index 0000000..ae6515f Binary files /dev/null and b/idre/static/img/bandcamp-button-square-black-128.png differ diff --git a/label/templates/label/releases.html b/label/templates/label/releases.html index 689ee13..19c98ab 100644 --- a/label/templates/label/releases.html +++ b/label/templates/label/releases.html @@ -19,9 +19,13 @@ {% if release.release_type == 3 %}Demo{% endif %}

- {% for contrib in release.contribs %} - {{ contrib.name }}{% if not forloop.last %},{% endif %} - {% endfor %} + {% if release.contribs|length < 3 %} + {% for contrib in release.contribs %} + {{ contrib.name }}{% if not forloop.last %},{% endif %} + {% endfor %} + {% else %} + (collab) + {% endif %}

{{ release.tag }} — {{ release.year }} @@ -31,7 +35,7 @@