You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.5 KiB
84 lines
1.5 KiB
/*
|
|
============ Audio Styles ============
|
|
Creé par : Sigfrido Gonzalez Puga
|
|
Projet: EMICA | ANNEXE | 462166 | Connâitre Raspberry Pi
|
|
Date : Juin 2022
|
|
*/
|
|
|
|
.audio-player {
|
|
--player-button-width: 3em;
|
|
--sound-button-width: 2em;
|
|
--space: .5em;
|
|
width: 15rem;
|
|
height: 15rem;
|
|
}
|
|
|
|
.icon-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #DE5E97;
|
|
color: #fff;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.audio-icon {
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.player-button {
|
|
background-color: transparent;
|
|
border: 0;
|
|
width: var(--player-button-width);
|
|
height: var(--player-button-width);
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
.timeline {
|
|
-webkit-appearance: none;
|
|
width: calc(100% - (var(--player-button-width) + var(--sound-button-width) + var(--space)));
|
|
height: .5em;
|
|
background-color: #e5e5e5;
|
|
border-radius: 5px;
|
|
background-size: 0% 100%;
|
|
background-image: linear-gradient(#DE5E97, #DE5E97);
|
|
background-repeat: no-repeat;
|
|
margin-right: var(--space);
|
|
}
|
|
|
|
.timeline::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
width: 1em;
|
|
height: 1em;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: all .1s;
|
|
background-color: #a94672;
|
|
}
|
|
|
|
.timeline::-moz-range-thumb {
|
|
-webkit-appearance: none;
|
|
width: 1em;
|
|
height: 1em;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
}
|
|
|
|
.musica {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |