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

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
(не показано 16 промежуточных версий этого же участника)
Строка 9: Строка 9:
     color: white;
     color: white;
     font-family: monospace;
     font-family: monospace;
 
     justify-content: space-between;
     /* Неоновая красная обводка */
     border: 2px solid #2a56a1;
     border: 2px solid #ff003c;
     box-shadow:
     box-shadow:
         0 0 8px #ff003c,
         0 0 8px rgba(42, 86, 161, 0.6),
         0 0 16px #ff003c,
         0 0 20px rgba(42, 86, 161, 0.4);
        0 0 24px #ff003c;
}
}


.custom-audio-play {
.custom-audio-play {
     background: #ff003c;
     background: #2a56a1;
     color: #fff;
     color: #fff;
     border: none;
     border: none;
Строка 30: Строка 28:


.custom-audio-play:hover {
.custom-audio-play:hover {
     background: #ff3366;
     background: #447fbc;
     transform: scale(1.05);
     transform: scale(1.05);
}
}
Строка 38: Строка 36:
     height: 6px;
     height: 6px;
     border-radius: 4px;
     border-radius: 4px;
     background: #300;
     background: #333;
     outline: none;
     outline: none;
     accent-color: #ff003c;
     accent-color: #2a56a1;
}
}


Строка 47: Строка 45:
     text-align: right;
     text-align: right;
     font-size: 12px;
     font-size: 12px;
     color: #f8b;
     color: #d6e4f1;
    padding-left: 10px;
    padding-right: 5px;
}
 
.custom-audio-volume-btn {
    background: transparent;
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 5px;
}
 
.custom-audio-volume {
    width: 100px;
    margin-left: 10px;
    background-color: #333;
    border-radius: 4px;
}
}

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

.custom-audio-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 480px;
    color: white;
    font-family: monospace;
    justify-content: space-between;
    border: 2px solid #2a56a1;
    box-shadow:
        0 0 8px rgba(42, 86, 161, 0.6),
        0 0 20px rgba(42, 86, 161, 0.4);
}

.custom-audio-play {
    background: #2a56a1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.custom-audio-play:hover {
    background: #447fbc;
    transform: scale(1.05);
}

.custom-audio-progress {
    flex-grow: 1;
    height: 6px;
    border-radius: 4px;
    background: #333;
    outline: none;
    accent-color: #2a56a1;
}

.custom-audio-time {
    min-width: 45px;
    text-align: right;
    font-size: 12px;
    color: #d6e4f1;
    padding-left: 10px;
    padding-right: 5px;
}

.custom-audio-volume-btn {
    background: transparent;
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.custom-audio-volume {
    width: 100px;
    margin-left: 10px;
    background-color: #333;
    border-radius: 4px;
}