Шаблон:Скачать/styles.css: различия между версиями

Материал из J2MEdia
Содержимое удалено Содержимое добавлено
Новая страница: «.download-box { display: flex; align-items: center; max-width: 520px; margin: 12px 0; padding: 14px 18px; border: 1px solid #b8b8b8; border-radius: 8px; background: #fff; box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15); } .download-box__icon { flex: 0 0 72px; text-align: center; margin-right: 18px; } .download-box__icon img { display: block; margin: 0 auto; } .download-box__content { flex: 1; min-w...»
 
Нет описания правки
Строка 1: Строка 1:
.download-box {
.download-clean {
display: flex;
display: flex;
align-items: center;
align-items: center;
max-width: 520px;
gap: 16px;
margin: 12px 0;
margin: 14px 0;
padding: 14px 18px;
padding: 8px 0;
border: 1px solid #b8b8b8;
background: transparent;
border-radius: 8px;
border: none;
background: #fff;
box-shadow: none;
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}
}


.download-box__icon {
.download-clean__icon {
flex: 0 0 72px;
flex: 0 0 56px;
text-align: center;
text-align: center;
margin-right: 18px;
}
}


.download-box__icon img {
.download-clean__icon img {
display: block;
display: block;
margin: 0 auto;
margin: 0 auto;
}
}


.download-box__content {
.download-clean__content {
flex: 1;
display: flex;
min-width: 0;
flex-direction: column;
gap: 8px;
}
}


.download-box__title {
.download-clean__title a {
margin-bottom: 9px;
font-size: 20px;
font-size: 18px;
font-weight: 700;
font-weight: 700;
text-decoration: none;
}
}


.download-box__button a {
.download-clean__title a:hover {
text-decoration: underline;
}

.download-clean__button a {
display: inline-block;
display: inline-block;
padding: 6px 14px;
padding: 8px 16px;
border-radius: 4px;
border-radius: 6px;
background: #198754;
background: #1f9d55;
color: #fff;
color: #fff;
font-weight: 600;
font-weight: 700;
text-decoration: none;
text-decoration: none;
}
}


.download-box__button a:hover {
.download-clean__button a:hover {
background: #146c43;
background: #168347;
color: #fff;
color: #fff;
text-decoration: none;
text-decoration: none;

Версия от 21:49, 8 августа 2026

.download-clean {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 14px 0;
    padding: 8px 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.download-clean__icon {
    flex: 0 0 56px;
    text-align: center;
}

.download-clean__icon img {
    display: block;
    margin: 0 auto;
}

.download-clean__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-clean__title a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.download-clean__title a:hover {
    text-decoration: underline;
}

.download-clean__button a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background: #1f9d55;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.download-clean__button a:hover {
    background: #168347;
    color: #fff;
    text-decoration: none;
}