HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/Siyum_old/wp-content/themes/kedushas/css/radio_streaming.css
   .music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #f5f5f5; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    width: 300px;
    margin-top: 15px;
}

.controls {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

#play-pause,
#mute-unmute {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}
#mute-unmute{
    font-size: 17px;
    width: 40px;
    height: 40px;
    background-color: #9ac8f233;
    color: #026FCF;
}

#play-pause{
    font-size: 25px;
    width: 78px;
    height: 78px;
    background-color: #026FCF;
    box-shadow: 0px 0px 1px 7px #9ac8f233;
    color: #fff;
}
/* #play-pause:hover,
#mute-unmute:hover {
    background-color: #0056b3;
} */


.music-player {
    width: 100%;
    /* max-width: 500px; */
    font-family: Arial, sans-serif;
    position: relative;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 3px;
    background: #ddd;
    border-radius: 5px;
}

.progress {
    width: 0%;
    height: 100%;
    background: #026FCF;
    transition: width 0.1s linear;
    position: relative;
    overflow: unset;
}
.progress::after{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #026FCF;
    display: block;
    position: absolute;
    top: -3px;
    right: 0;
    left: auto;
}

.live-indicator {
    position: absolute;
    right: 0;
    top: 20px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1s infinite;
}

.live-text {
    color: red;
    font-size: 14px;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.progress-container-outer{
    padding: 12px 18px;
    border-radius: 21px;
    background-color: #e7f2fc99;
    width: 100%;
}
@media (max-width: 1679px) {
    #play-pause {
        font-size: 23px;
        width: 72px;
        height: 72px;
    }
    #mute-unmute {
        font-size: 14px;
        width: 38px;
        height: 38px;
    }
}
@media (max-width: 767px) {
    .music-player .controls{
        flex-wrap: wrap;
    }
    .music-player #play-pause{
        order: 3;
        width: 59px;
        height: 59px;
        transform: translateX(-21px);
        box-shadow: 0px 0px 1px 5px #9ac8f233;
        margin: 0 auto;
    }
    .music-player #mute-unmute{
        order: 2;
        width: 41px;
        height: 41px;
    }
    .music-player .progress-container-outer{
        order: 1;
        margin-bottom: 15px;
    }
    .music-player .progress{
        max-width: 100%;
    }
    .music-player .live-indicator {
        top: 62px;
        right: -5px;
    }
    .music-player{
        padding: 20px 0 0;
    }
}