Шаблон:ModernTitle: различия между версиями
Материал из Space Station 14 Вики
|
|
Строка 11: |
Строка 11: |
| font-family: 'Montserrat', sans-serif; | | font-family: 'Montserrat', sans-serif; |
| font-weight: bold; | | font-weight: bold; |
| box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5);
| |
| } | | } |
| .modern-title::before, | | .modern-title::before, |
Строка 30: |
Строка 29: |
| border-radius: 5px; | | border-radius: 5px; |
| min-width: clamp(50px, 12vw, 200px); | | min-width: clamp(50px, 12vw, 200px); |
| | box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5); |
| } | | } |
|
| |
|
Версия от 07:16, 10 августа 2024
{{{1}}}
.modern-title {
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
.modern-title::before,
.modern-title::after {
content: "";
flex-grow: 1;
height: 4px;
background-color: #3c3c4b;
}
.modern-title::before {
margin-right: 10px;
}
.modern-title::after {
margin-left: 10px;
}
.modern-title span {
background-color: #3c3c4b;
border-radius: 5px;
min-width: clamp(50px, 12vw, 200px);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
.modern-title span {
width: 100% !important;
padding: 0 !important;
}
.modern-title::before {
margin-right: 0;
}
.modern-title::after {
margin-left: 0;
}
}