Открыть меню
Переключить меню настроек
Открыть персональное меню
Вы не представились системе
Ваш IP-адрес будет виден всем, если вы внесёте какие-либо изменения.

Шаблон:ButtonPage/Button.css

Материал из Celadon | Wiki Shiptest
.button { display: flex;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.button:hover {
    background-color: #fff;
    box-shadow: 0 0 8px 2px rgba(255, 215, 0, 0.7);
    border-color: #ffcc00;
}

.button-img {
    vertical-align: middle;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.button-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.button-text {
text-align:center;
}