مدیاویکی:Common.css: تفاوت میان نسخه‌ها

بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۷٬۴۵۱: خط ۷٬۴۵۱:
.category-card:hover {
.category-card:hover {
     transform: translateY(-2px);
     transform: translateY(-2px);
}
/* استایل بخش شبکه‌های اجتماعی در مدیویکی */
.social-media-section {
    text-align: center;
    padding: 15px;
    background: #f8f9fa; /* رنگ پس‌زمینه ملایم */
    border-radius: 8px;
    margin: 10px 0;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white !important; /* اجبار برای رنگ سفید متن/آیکون */
    text-decoration: none !important;
    font-weight: bold;
    font-size: 12px;
    transition: transform 0.2s ease-in-out, opacity 0.2s;
}
.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}
/* رنگ‌بندی اختصاصی برای هر شبکه */
.social-icon.telegram { background-color: #0088cc; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.eitaa { background-color: #d97706; }
.social-icon.rubika { background-color: #d1005a; }
/* استایل متن داخل دایره اگر آیکون نداشتی */
.icon-text {
    line-height: 1;
}
}