לדלג לתוכן

מדיה ויקי:Common.css

מתוך המלאכים

לתשומת ליבך: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
/* הסגנונות הנכתבים כאן ישפיעו על כל העיצובים */
/* שימוש ב־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;
}