ميدياويكي:Common.css: الفرق بين النسختين

لا ملخص تعديل
لا ملخص تعديل
سطر ٢٤٠: سطر ٢٤٠:
         overflow-wrap: anywhere;
         overflow-wrap: anywhere;
         word-break: normal;
         word-break: normal;
    }
}
/* =========================================
  Basrawe Wiki - Main Page V2
  ========================================= */
.basrawe-home {
    max-width: 1250px;
    margin: 0 auto;
    direction: rtl;
}
/* بطاقات أقسام الموسوعة */
.basrawe-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.basrawe-explore-card {
    background: #fff;
    border: 1px solid #dde5e7;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    min-width: 0;
}
/* الإحصاءات */
.basrawe-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
/* العمودان الرئيسيان */
.basrawe-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
/* المختارات */
.basrawe-picks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
/* التابلت */
@media (max-width: 1000px) {
    .basrawe-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .basrawe-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* الموبايل */
@media (max-width: 700px) {
    .basrawe-home {
        width: 100%;
    }
    .basrawe-explore-grid,
    .basrawe-feature-grid,
    .basrawe-picks-grid {
        grid-template-columns: 1fr;
    }
    .basrawe-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
     }
     }
}
}