לדלג לתוכן

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

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


/* ✅ יישור הלוגו למרכז */
/* ✅ יישור הלוגו למרכז + הגדלת גובה */
.mw-logo-container {
.mw-logo-container {
     justify-content: center;
     justify-content: center;
}
}
/* ✅ הגדלת גובה/רוחב של הלוגו */
.mw-logo-icon {
.mw-logo-icon {
     height: 80px;
     height: 80px;
שורה 26: שורה 22:
}
}


/* ✅ הגדרת פונט Calibri לכל הדף */
/* ✅ רקע כללי – תמונה מרשימה עם כיסוי */
body, input, select, textarea, .mw-body, .mw-content-ltr, .mw-content-rtl {
    font-family: 'Calibri', sans-serif !important;
}
 
/* ✅ רקע כללי בהיר */
body {
body {
  background-image: url("https://theangles.vizn.co.il/path-to-background.jpg");
    background-image: url("https://images.pexels.com/photos/531880/pexels-photo-531880.jpeg");
  background-size: cover;
    background-size: cover;
  background-position: center;
    background-position: center;
  background-attachment: fixed;
    background-attachment: fixed;
  background-repeat: no-repeat;
    background-repeat: no-repeat;
}
}


/* ✅ תוכן הדף – לבן עם הצללה ומרווחים */
/* ✅ מלבן תוכן מרכזי – לבן חצי שקוף */
#content, .mw-body {
#content, .mw-body {
     background-color: #ffffff !important;
     background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
     border: 1px solid #ccc;
     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 {
#mw-panel {
     background-color: #f1f5fa !important;
     background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
}


שורה 80: שורה 59:
     padding: 5px;
     padding: 5px;
     border-radius: 4px;
     border-radius: 4px;
}
/* ✅ כותרות בצבע כחול */
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;
}
}

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

/* ✅ פונט אחיד Calibri בכל האתר */
body, input, select, textarea,
.mw-body, .mw-content-ltr, .mw-content-rtl,
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;
}

/* ✅ רקע כללי – תמונה מרשימה עם כיסוי */
body {
    background-image: url("https://images.pexels.com/photos/531880/pexels-photo-531880.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ✅ מלבן תוכן מרכזי – לבן חצי שקוף */
#content, .mw-body {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
}

/* ✅ תפריט צד – חצי שקוף עם רקע בהיר */
#mw-panel {
    background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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

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

/* ✅ כותרות בצבע כחול */
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;
}