לדלג לתוכן

מדיה ויקי:Common.css: הבדלים בין גרסאות בדף

מתוך המלאכים
אין תקציר עריכה
אין תקציר עריכה
שורה 1: שורה 1:
/* הסגנונות הנכתבים כאן ישפיעו על כל העיצובים */
/* הסגנונות הנכתבים כאן ישפיעו על כל העיצובים */
/* שימוש ב־Calibri גם על כותרות */
body,
.mw-body,
h1, h2, h3, h4, h5, h6,
.vector-page-titlebar h1,
#content h1,
#firstHeading {
    font-family: 'Calibri', sans-serif !important;
}


/* ✅ הסתרת שם האתר ליד הלוגו */
/* ✅ הסתרת שם האתר ליד הלוגו */

גרסה מ־21:35, 28 ביוני 2025

/* הסגנונות הנכתבים כאן ישפיעו על כל העיצובים */
/* שימוש ב־Calibri גם על כותרות */
body,
.mw-body,
h1, h2, h3, h4, h5, h6,
.vector-page-titlebar h1,
#content h1,
#firstHeading {
    font-family: 'Calibri', sans-serif !important;
}

/* ✅ הסתרת שם האתר ליד הלוגו */
.mw-logo-container .mw-logo-wordmark {
    display: none !important;
}

/* ✅ יישור הלוגו למרכז */
.mw-logo-container {
    justify-content: center;
}

/* ✅ הגדלת גובה/רוחב של הלוגו */
.mw-logo-icon {
    height: 80px;
    width: auto;
}

/* ✅ הגדרת פונט Calibri לכל הדף */
body, input, select, textarea, .mw-body, .mw-content-ltr, .mw-content-rtl {
    font-family: 'Calibri', sans-serif !important;
}

/* ✅ רקע כללי בהיר */
body {
    background-color: #f9fbfd !important;
}

/* ✅ תוכן הדף – לבן עם הצללה ומרווחים */
#content, .mw-body {
    background-color: #ffffff !important;
    border: 1px solid #ccc;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* ✅ כותרות – צבע כחול */
h1, h2, h3, h4, h5 {
    color: #0466c8 !important;
}

/* ✅ קישורים – צבע ונגיעה */
a, a:visited {
    color: #004080 !important;
    text-decoration: none;
}
a:hover {
    color: #0466c8 !important;
    text-decoration: underline;
}

/* ✅ תפריט צד – רקע בהיר */
#mw-panel {
    background-color: #f1f5fa !important;
}

/* ✅ סרגל עליון */
#mw-head {
    background-color: #f7f9fc !important;
    border-bottom: 1px solid #ccc;
}

/* ✅ תיבת חיפוש */
#searchInput {
    border: 1px solid #aaa;
    padding: 5px;
    border-radius: 4px;
}