Style "Nothing currently playing" text

This commit is contained in:
Sijmen 2023-04-25 18:59:37 +02:00
parent dea979074a
commit 27c94f6b3f
Signed by: vijfhoek
GPG Key ID: DAF7821E067D9C48
1 changed files with 8 additions and 0 deletions

View File

@ -103,9 +103,11 @@
} }
.player .nowplaying { .player .nowplaying {
display: flex;
flex-flow: column; flex-flow: column;
background-color: #334; background-color: #334;
border-radius: 0.25rem; border-radius: 0.25rem;
height: 9.5rem;
} }
.player .controls { .player .controls {
@ -124,6 +126,7 @@
flex-flow: row; flex-flow: row;
align-items: center; align-items: center;
padding: 0.5rem; padding: 0.5rem;
flex: 1;
} }
.player .albumart { .player .albumart {
@ -138,6 +141,11 @@
.player .metadata { .player .metadata {
flex: 1; flex: 1;
} }
.player .idle {
font-weight: bold;
text-align: center;
}
</style> </style>
</head> </head>