From 0ad3aded292b86234ebb75e8403b6abd964f4d80 Mon Sep 17 00:00:00 2001 From: leiyu3 Date: Thu, 17 Jul 2025 15:44:53 -0400 Subject: setlist kind of works --- assets/css/custom.css | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'assets') diff --git a/assets/css/custom.css b/assets/css/custom.css index acbff4f..addb33a 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -452,4 +452,59 @@ button#clear-search svg { .back-to-top { text-align: center; +} + +#setlist-tab { + position: fixed; + bottom: 5px; + right: 3px; + background: rgba(0, 0, 0, 0.5); /* translucent black */ + color: white; + padding: 3px 5px; + border-radius: 6px; + font-size: 14px; + cursor: pointer; + z-index: 9999; + transition: opacity 0.2s ease-in-out, background 0.2s; + opacity: 0.6; +} + +#setlist-tab:hover { + background: rgba(0, 0, 0, 0.7); /* slightly darker on hover */ + opacity: 1; /* fade in */ +} + +#setlist-sidebar { + position: fixed; + bottom: 50px; + right: 10px; + width: 250px; + background: #241E1A; + border: 2px solid #ccc; + padding: 12px; + border-radius: 8px; + box-shadow: 0 0 8px rgba(0,0,0,0.2); + z-index: 9998; +} + +#setlist-sidebar h6{ + margin-top: 5px; +} + +#setlist-sidebar.hidden { + display: none; +} + +#setlist li { + display: flex; + justify-content: space-between; + margin-bottom: 6px; +} + +#setlist li button { + background: none; + border: none; + color: red; + font-size: 1rem; + cursor: pointer; } \ No newline at end of file -- cgit v1.2.3