73 lines
1.1 KiB
SCSS
73 lines
1.1 KiB
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2025 Ncam Gnrvngu <info@ncamgnrvngu.eu>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#player {
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
#title {
|
|
text-align: center;
|
|
}
|
|
|
|
#controls {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
#playbutton {
|
|
width: 8%;
|
|
aspect-ratio: 1/1;
|
|
margin-right: 15px;
|
|
background: #313244;
|
|
border: none;
|
|
color: #cba6f7;
|
|
border-radius: 100%;
|
|
line-height: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.seek {
|
|
-webkit-appearance: none;
|
|
margin-left: 15px;
|
|
width: 100%;
|
|
height: 8px;
|
|
}
|
|
.seek:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.seek::-webkit-slider-runnable-track {
|
|
width: 100%;
|
|
height: 8px;
|
|
cursor: pointer;
|
|
background: #CDD6F4;
|
|
}
|
|
.seek::-webkit-slider-thumb {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
}
|
|
.seek:focus::-webkit-slider-runnable-track {
|
|
background: #CDD6F4;
|
|
}
|
|
.seek::-moz-range-track {
|
|
width: 100%;
|
|
height: 8px;
|
|
cursor: pointer;
|
|
background: #CDD6F4;
|
|
}
|
|
.seek::-moz-range-progress {
|
|
width: 100%;
|
|
height: 8px;
|
|
cursor: pointer;
|
|
background: #cba6f7;
|
|
}
|
|
.seek::-moz-range-thumb {
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|