From 27c94f6b3f62a0023795c25ccb2b462334c0b4a5 Mon Sep 17 00:00:00 2001 From: Sijmen Date: Tue, 25 Apr 2023 18:59:37 +0200 Subject: [PATCH] Style "Nothing currently playing" text --- templates/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/index.html b/templates/index.html index 6b168df..3ddef2d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -103,9 +103,11 @@ } .player .nowplaying { + display: flex; flex-flow: column; background-color: #334; border-radius: 0.25rem; + height: 9.5rem; } .player .controls { @@ -124,6 +126,7 @@ flex-flow: row; align-items: center; padding: 0.5rem; + flex: 1; } .player .albumart { @@ -138,6 +141,11 @@ .player .metadata { flex: 1; } + + .player .idle { + font-weight: bold; + text-align: center; + }