לדלג לתוכן

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

מתוך המלאכים
אין תקציר עריכה
אין תקציר עריכה
 
(9 גרסאות ביניים של אותו משתמש אינן מוצגות)
שורה 1: שורה 1:
/* הסגנונות הנכתבים כאן ישפיעו על כל העיצובים */
/* ✅ פונט אחיד לכל הדף */
/* שימוש ב־Calibri גם על כותרות */
body, input, select, textarea, .mw-body, .mw-content-ltr, .mw-content-rtl,
body,
.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;
}
}


/* ✅ הסתרת שם האתר ליד הלוגו */
/* באנר ראשי עם רקע */
.mw-logo-container .mw-logo-wordmark {
.main-page-banner {
    display: none !important;
  background-image: url('https://i.imagesup.co/images2/590771adcf5588bca7bb1c17b7ebc4238461dcec.png');
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  border-radius: 14px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-family: "Segoe UI", sans-serif;
  color: #111;
}
}


/* ✅ יישור הלוגו למרכז */
/* כותרת הבאנר */
.mw-logo-container {
.main-page-banner h1 {
    justify-content: center;
  font-size: 2.4em;
  color: #003366;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
}


/* ✅ הגדלת גובה/רוחב של הלוגו */
/* תיאור קצר בבאנר */
.mw-logo-icon {
.main-page-banner p {
    height: 80px;
  font-size: 1.1em;
    width: auto;
  color: #333;
  background: rgba(255,255,255,0.75);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
}


/* ✅ הגדרת פונט Calibri לכל הדף */
/* כפתור */
body, input, select, textarea, .mw-body, .mw-content-ltr, .mw-content-rtl {
.main-page-banner .start-button {
    font-family: 'Calibri', sans-serif !important;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  background-color: #007bff;
  color: white;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.main-page-banner .start-button:hover {
  background-color: #0056b3;
  cursor: pointer;
}
}


/* ✅ רקע כללי בהיר */
 
 
/* ✅ רקע כללי יפה */
body {
body {
   background-image: url("https://theangles.vizn.co.il/path-to-background.jpg");
   background-image: url("https://i.imagesup.co/images2/590771adcf5588bca7bb1c17b7ebc4238461dcec.png");
   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;
  margin: 0;
  padding: 0;
}
}


/* ✅ תוכן הדף – לבן עם הצללה ומרווחים */
/* ✅ מסגרת תוכן לבנה עם הצללה */
#content, .mw-body {
#content, .mw-body {
     background-color: #ffffff !important;
     background-color: rgba(255, 255, 255, 0.95) !important;
     border: 1px solid #ccc;
    padding: 30px;
     padding: 2em;
     border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
 
/* ✅ תפריט צד עם אפקט זכוכית חלבית */
#mw-panel {
     background-color: rgba(255, 255, 255, 0.6) !important;
     border-radius: 8px;
     border-radius: 8px;
     box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 10px;
     box-shadow: 0 0 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
 
/* ✅ תפריט עליון שקוף / עם אפקט */
#mw-head, #mw-head-base {
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0)) !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
}


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


/* ✅ קישורים – צבע ונגיעה */
/* ✅ קישורים בצבעים נעימים עם מעבר */
a, a:visited {
a, a:visited {
     color: #004080 !important;
     color: #004080 !important;
     text-decoration: none;
     text-decoration: none;
    transition: all 0.2s ease-in-out;
}
}
a:hover {
a:hover {
     color: #0466c8 !important;
     color: #0466c8 !important;
     text-decoration: underline;
     text-decoration: underline;
    transform: scale(1.03);
}
}


/* ✅ תפריט צד – רקע בהיר */
/* ✅ קו מפריד אלגנטי */
#mw-panel {
hr {
     background-color: #f1f5fa !important;
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}
 
/* ✅ יישור הלוגו למרכז והגדלתו */
.mw-logo-container {
    justify-content: center;
}
.mw-logo-icon {
    height: 80px;
    width: auto;
}
.mw-logo-container .mw-logo-wordmark {
     display: none !important;
}
/* עיצוב כולל לתיבת החיפוש */
#p-search form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease-in-out;
}
}


/* ✅ סרגל עליון */
/* אפקט בעת ריחוף או מיקוד */
#mw-head {
#p-search form:hover,
    background-color: #f7f9fc !important;
#p-search form:focus-within {
    border-bottom: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(4, 102, 200, 0.3);
}
}


/* ✅ תיבת חיפוש */
/* שדה הטקסט */
#searchInput {
#searchInput {
    border: 1px solid #aaa;
  flex: 1;
    padding: 5px;
  border: none;
    border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 0;
  background: transparent;
  outline: none;
  font-family: 'Calibri', sans-serif;
}
 
/* כפתור החיפוש */
#searchButton {
  background-color: transparent;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Calibri', sans-serif;
  transition: background-color 0.2s ease-in-out;
}
 
/* כפתור חיפוש בעת ריחוף */
#searchButton:hover {
  background-color: #f0f0f0;
}
}

גרסה אחרונה מ־22:18, 28 ביוני 2025

/* ✅ פונט אחיד לכל הדף */
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;
}

/* באנר ראשי עם רקע */
.main-page-banner {
  background-image: url('https://i.imagesup.co/images2/590771adcf5588bca7bb1c17b7ebc4238461dcec.png');
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  border-radius: 14px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-family: "Segoe UI", sans-serif;
  color: #111;
}

/* כותרת הבאנר */
.main-page-banner h1 {
  font-size: 2.4em;
  color: #003366;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* תיאור קצר בבאנר */
.main-page-banner p {
  font-size: 1.1em;
  color: #333;
  background: rgba(255,255,255,0.75);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* כפתור */
.main-page-banner .start-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  background-color: #007bff;
  color: white;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.main-page-banner .start-button:hover {
  background-color: #0056b3;
  cursor: pointer;
}



/* ✅ רקע כללי יפה */
body {
  background-image: url("https://i.imagesup.co/images2/590771adcf5588bca7bb1c17b7ebc4238461dcec.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/* ✅ מסגרת תוכן לבנה עם הצללה */
#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);
}

/* ✅ תפריט צד עם אפקט זכוכית חלבית */
#mw-panel {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ✅ תפריט עליון שקוף / עם אפקט */
#mw-head, #mw-head-base {
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0)) !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

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

/* ✅ קישורים בצבעים נעימים עם מעבר */
a, a:visited {
    color: #004080 !important;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: #0466c8 !important;
    text-decoration: underline;
    transform: scale(1.03);
}

/* ✅ קו מפריד אלגנטי */
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}

/* ✅ יישור הלוגו למרכז והגדלתו */
.mw-logo-container {
    justify-content: center;
}
.mw-logo-icon {
    height: 80px;
    width: auto;
}
.mw-logo-container .mw-logo-wordmark {
    display: none !important;
}
/* עיצוב כולל לתיבת החיפוש */
#p-search form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease-in-out;
}

/* אפקט בעת ריחוף או מיקוד */
#p-search form:hover,
#p-search form:focus-within {
  box-shadow: 0 0 8px rgba(4, 102, 200, 0.3);
}

/* שדה הטקסט */
#searchInput {
  flex: 1;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 0;
  background: transparent;
  outline: none;
  font-family: 'Calibri', sans-serif;
}

/* כפתור החיפוש */
#searchButton {
  background-color: transparent;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Calibri', sans-serif;
  transition: background-color 0.2s ease-in-out;
}

/* כפתור חיפוש בעת ריחוף */
#searchButton:hover {
  background-color: #f0f0f0;
}