تغیر استایل فهرست مطالب مقاله های سایت های المنتوری

تغیر استایل فهرست مطالب مقاله های سایت های المنتوری

تو این ویدیو خیلی راحت با استفاده از این تیکه کد سی اس اس می توانید استایل ساده فهرست المنتور رو به ی استایل خاص وجذاب تبدیل بکنید

کد استایل فهرست مطالب

زبان: CSS
/*elementorico.ir | المنتوریکو ،  تیم آموزشی */


/* فهرست مطالب با تم آبی مدرن */
.elementor-widget-toc {
    background-color: #f0f6ff; /* آبی خیلی روشن */
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 64, 128, 0.1);
    padding: 22px;
    border: 1px solid #d0e3ff;
    font-family: 'Poppins', 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
}

.elementor-widget-toc:hover {
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.15);
}

/* عنوان فهرست مطالب */
.elementor-toc__header-title {
    color: #0d47a1;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    font-size: 1.2rem;
}

/* آیتم‌های فهرست */
.elementor-toc__list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    transition: all 0.25s ease;
}

.elementor-toc__list-item a:before {
    content: '';
    position: absolute;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #dbe8ff;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.elementor-toc__list-item a:hover:before {
    transform: translateY(-50%) scale(1.3);
    background-color: #1e88e5;
    box-shadow: 0px 0px 10px 0px #1e88e580;
}

a.elementor-toc__list-item-text.elementor-toc__top-level.elementor-item-active:before {
    transform: translateY(-50%) scale(1.3);
    background-color: #1e88e5;
    box-shadow: 0px 0px 10px 0px #1e88e580;
}

a.elementor-toc__list-item-text.elementor-toc__top-level.elementor-item-active {
    background-color: #e3f2fd;
    border-left: 3px solid #2196f3;
}

/* لینک‌ها */
.elementor-toc__list-item a {
    color: #0d47a1;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.25s ease;
    display: block;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: rgba(33, 150, 243, 0.05);
}

.elementor-toc__list-item a:hover {
    color: #1565c0;
    background-color: rgba(33, 150, 243, 0.15);
}

/* آیتم فعال */
.elementor-toc__list-item.elementor-toc__list-item--active a {
    color: #0d47a1;
    font-weight: 600;
    background-color: rgba(33, 150, 243, 0.15);
}