پرش به محتوا

مدیاویکی:Gadget-QuranTab.css

از ویکی شیعه

نکته: پس از انتشار ممکن است برای دیدن تغییرات نیاز باشد که حافظهٔ نهانی مرورگر خود را پاک کنید.

  • فایرفاکس / سافاری: کلید Shift را نگه دارید و روی دکمهٔ Reload کلیک کنید، یا کلید‌های Ctrl-F5 یا Ctrl-R را با هم فشار دهید (در رایانه‌های اپل مکینتاش کلید‌های ⌘-R)
  • گوگل کروم: کلیدهای Ctrl+Shift+R را با هم فشار دهید (در رایانه‌های اپل مکینتاش کلید‌های ⌘-Shift-R)
  • Edge: کلید Ctrl را نگه‌دارید و روی دکمهٔ Refresh کلیک کنید، یا کلید‌های Ctrl-F5 را با هم فشار دهید
.quran-table-container {
    border: 1px solid #c2b280;
    border-radius: 8px;
    overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quran-table-container .quran-responsive-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #000000;
}

.quran-table-container .quran-table-row {
    display: table-row;
    background-color: #fcf8e8;
    text-align: justify;
}

.quran-table-container .quran-table-row:not(:last-child) {
    border-bottom: 1px solid #c2b280;
}

.quran-table-container .quran-table-row:nth-child(even) {
    background-color: #fdf9f3;
}

.quran-table-container .quran-table-cell {
    padding: 16px;
    display: table-cell;
    vertical-align: middle;
    transition: background-color 0.3s ease;
    width: 50%;
}

.quran-table-container .quran-table-cell:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.quran-table-container .quran-right-cell {
    font-family: 'AdobeArabic-Regular', sans-serif;
    font-size: 20px; /* !important حذف شد */
    color: #555;
    border-left: 1px solid #c2b280;
}

.quran-table-container .quran-left-cell {
    font-family: 'IRANSansX-Regular', sans-serif;
    font-size: 14px;
    color: #555;
}

.quran-table-container.quran-night-mode .quran-responsive-table {
    background-color: #121212;
    color: #ffffff;
}

.quran-table-container.quran-night-mode .quran-table-row:nth-child(even) {
    background-color: #1e1e1e;
}

.quran-table-container.quran-font-smaller .quran-right-cell,
.quran-table-container.quran-font-smaller .quran-left-cell {
    font-size: 14px;
}

.quran-table-container.quran-font-larger .quran-right-cell,
.quran-table-container.quran-font-larger .quran-left-cell {
    font-size: 20px;
}

@media (max-width: 768px) {
    .quran-table-container .quran-table-row {
        display: block;
        margin-bottom: 8px;
        background-color: #ffffff;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .quran-table-container .quran-table-cell {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
        border: none;
        margin-bottom: 8px;
    }

    .quran-table-container .quran-table-cell:last-child {
        margin-bottom: 0;
    }
}