MediaWiki:Common.css: відмінності між версіями

нема опису редагування
Немає опису редагування
Мітки: Ручний відкіт Скасовано
Немає опису редагування
Мітка: Скасовано
Рядок 311: Рядок 311:


.flex__block {
.flex__block {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
     display: flex;
     display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
     justify-content: space-between;
     justify-content: space-between;
     align-items: center
     align-items: center;
    flex-wrap: wrap;  /* Ensures that blocks can wrap on smaller screens */
}
}


.home__blocks {
.home__blocks {
    display: flex;
    flex-wrap: wrap;
     gap: 10px;
     gap: 10px;
     align-items: stretch
     align-items: stretch;
    width: 100%;  /* Ensures full width */
}
}


.home__block {
.home__block {
     align-items: stretch;
     align-items: stretch;
     width: 33.3333%;
     width: 33.3333%; /* 3 columns layout on desktop */
     flex-direction: column
     flex-direction: column;
    box-sizing: border-box;  /* Includes padding and border in the element's total width and height */
}
}


Рядок 358: Рядок 353:
     width: 48px;
     width: 48px;
     height: 48px;
     height: 48px;
    display: inline-block;
     background-position: center center;
     background-position: center center;
     background-size: contain;
     background-size: contain;
     background-repeat: no-repeat;
     background-repeat: no-repeat;
}
.home__block-icon-1 {
    background-image: url(https://mafiacc.site/images/a/aa/Foty.png)
}
.home__block-icon-2 {
    background-image: url(https://mafiacc.site/images/0/03/Champions.png)
}
.home__block-icon-3 {
    background-image: url(https://mafiacc.site/images/d/d3/Tournaments.png)
}
}


Рядок 379: Рядок 361:
     flex-grow: 1;
     flex-grow: 1;
     flex-direction: column;
     flex-direction: column;
     align-items: stretch
     align-items: stretch;
}
}


Рядок 389: Рядок 371:
}
}


.home__block-content-title {
/* Media Query for Mobile Devices */
line-height: 1;
@media (max-width: 768px) {
    .home__block {
        width: 100%;  /* Full width for mobile */
        margin-bottom: 20px; /* Space between blocks */
    }
}
}


.home__block-content-inner pre {
/* Additional responsive adjustments might be necessary depending on content */
font-family: 'Helvetica'!important;
padding: 0!important;
display: block!important;
}
 
 
.home__block-content-title  .content p {
margin: 0!important;
}