diff options
Diffstat (limited to 'server/src/routes/ui/style/js-player.css')
-rw-r--r-- | server/src/routes/ui/style/js-player.css | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/server/src/routes/ui/style/js-player.css b/server/src/routes/ui/style/js-player.css deleted file mode 100644 index 79dffa0..0000000 --- a/server/src/routes/ui/style/js-player.css +++ /dev/null @@ -1,52 +0,0 @@ -/* - This file is part of jellything (https://codeberg.org/metamuffin/jellything) - which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2023 metamuffin <metamuffin.org> -*/ - -.js-player { - --csize: 50px; -} - -.js-player .controls { - position: absolute; - bottom: 0px; - left: 0px; - width: 100%; - height: var(--csize); - background-color: #1d1d1d99; - transition: opacity 0.2s; - - display: flex; - flex-direction: row; -} - -.js-player .controls button { - padding: 0px; - width: var(--csize); - height: 100%; - border: none; - background-color: #ffffff10; -} - -.js-player .controls p.status { - display: inline-block; - width: 6em; - text-align: right; - margin: 0px; - font-family: monospace; - margin: 0.4em; -} - -.pri { - flex-grow: 1; - padding: 0px; - display: inline-block; - margin: 0px; - width: calc(100% - var(--csize) * 2 - 2px); - height: var(--csize); -} -.pri-current { - height: var(--csize); - background-color: #ffffff20; -} |