From ae96ef6432d87a2c186dec0d2d902f63ed919e84 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 15 Dec 2024 00:17:07 +0100 Subject: Add playlists web interface. --- web/common.css | 33 ++++++ web/index.html | 36 +----- web/playlists.html | 329 +++++++++++++++++++++++++++++++++++++++++++++++++++++ web/sidebar.html | 25 ++++ 4 files changed, 391 insertions(+), 32 deletions(-) create mode 100644 web/common.css create mode 100644 web/playlists.html create mode 100644 web/sidebar.html diff --git a/web/common.css b/web/common.css new file mode 100644 index 000000000..d4c5f7d0d --- /dev/null +++ b/web/common.css @@ -0,0 +1,33 @@ + +button { + border: 1px solid rgba(27, 31, 35, 0.15); + border-radius: 6px; + color: #24292E; + display: inline-block; + line-height: 20px; + padding: 6px 16px; + vertical-align: middle; + white-space: nowrap; + word-wrap: break-word; +} + +button:hover { + background-color: #F3F4F6; + text-decoration: none; + transition-duration: 0.1s; +} + +button:active { + background-color: #EDEFF2; + box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset; + transition: none 0s; +} + +button:focus { + outline: 1px transparent; +} + +button:before { + display: none; +} + diff --git a/web/index.html b/web/index.html index bf5359515..a9f4d5629 100644 --- a/web/index.html +++ b/web/index.html @@ -1,6 +1,7 @@ + + + +Playlists + + + + +SIDEBAR + +
+

Playlists: +

+ +

Playlist: +

+
+
+ +
+

Content: +

+
    +
+ +
+ + + + diff --git a/web/sidebar.html b/web/sidebar.html new file mode 100644 index 000000000..7ea629cc0 --- /dev/null +++ b/web/sidebar.html @@ -0,0 +1,25 @@ + + + + -- cgit v1.2.3