MediaWiki:Test.css: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
Строка 1: Строка 1:
.midi-player {
.custom-audio-wrapper {
     margin: 10px 0;
     display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 450px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: white;
    font-family: monospace;
}
 
.custom-audio-play {
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
 
.custom-audio-play:hover {
    background: #666;
}
 
.custom-audio-progress {
    flex-grow: 1;
    height: 6px;
    border-radius: 4px;
    background: #333;
}
 
.custom-audio-time {
    min-width: 40px;
    text-align: right;
    font-size: 12px;
    color: #ccc;
}
}

Версия от 20:06, 16 апреля 2025

.custom-audio-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 450px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: white;
    font-family: monospace;
}

.custom-audio-play {
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-audio-play:hover {
    background: #666;
}

.custom-audio-progress {
    flex-grow: 1;
    height: 6px;
    border-radius: 4px;
    background: #333;
}

.custom-audio-time {
    min-width: 40px;
    text-align: right;
    font-size: 12px;
    color: #ccc;
}