Шаблон:ModernTitle: различия между версиями
Материал из Space Station 14 Вики
|
|
Строка 28: |
Строка 28: |
| background-color: {{{background-color|#3c3c4b}}}; | | background-color: {{{background-color|#3c3c4b}}}; |
| border-radius: 5px; | | border-radius: 5px; |
| min-width: clamp(50px, 12vw, 200px); | | min-width: clamp(50px, 20vw, 300px); |
| box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5); | | box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5); |
| } | | } |
Версия от 13:08, 12 августа 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, 20vw, 300px);
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;
}
}