מדיה ויקי:Common.css: הבדלים בין גרסאות בדף
מראה
Omergamliel (שיחה | תרומות) אין תקציר עריכה |
Omergamliel (שיחה | תרומות) אין תקציר עריכה |
||
| שורה 1: | שורה 1: | ||
/* ✅ פונט אחיד | /* ✅ פונט אחיד לכל הדף */ | ||
body, input, select, textarea, | body, input, select, textarea, .mw-body, .mw-content-ltr, .mw-content-rtl, | ||
.mw-body, .mw-content-ltr, .mw-content-rtl, | |||
h1, h2, h3, h4, h5, h6, | h1, h2, h3, h4, h5, h6, | ||
.vector-page-titlebar h1, | .vector-page-titlebar h1, | ||
| שורה 8: | שורה 7: | ||
} | } | ||
/* ✅ רקע כללי יפה */ | |||
/* ✅ רקע כללי | |||
body { | 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; | |||
margin: 0; | |||
padding: 0; | |||
} | } | ||
/* ✅ | /* ✅ מסגרת תוכן לבנה עם הצללה */ | ||
#content, .mw-body { | #content, .mw-body { | ||
background-color: rgba(255, 255, 255, 0.95) !important; | background-color: rgba(255, 255, 255, 0.95) !important; | ||
| שורה 37: | שורה 24: | ||
border-radius: 12px; | border-radius: 12px; | ||
box-shadow: 0 0 25px rgba(0, 0, 0, 0.15); | box-shadow: 0 0 25px rgba(0, 0, 0, 0.15); | ||
} | } | ||
/* ✅ תפריט צד | /* ✅ תפריט צד עם אפקט זכוכית חלבית */ | ||
#mw-panel { | #mw-panel { | ||
background-color: rgba(255, 255, 255, 0. | background-color: rgba(255, 255, 255, 0.6) !important; | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: 10px; | padding: 10px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
backdrop-filter: blur(6px); | |||
-webkit-backdrop-filter: blur(6px); | |||
} | } | ||
/* ✅ | /* ✅ תפריט עליון שקוף / עם אפקט */ | ||
#mw-head { | #mw-head, #mw-head-base { | ||
background- | background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0)) !important; | ||
border | border: none !important; | ||
box-shadow: none !important; | |||
backdrop-filter: blur(4px); | |||
-webkit-backdrop-filter: blur(4px); | |||
} | } | ||
| שורה 66: | שורה 50: | ||
} | } | ||
/* ✅ קישורים | /* ✅ קישורים בצבעים נעימים עם מעבר */ | ||
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); | |||
} | |||
/* ✅ תיבת חיפוש מעוצבת */ | |||
#searchInput { | |||
background: #ffffffcc; | |||
border: 1px solid #ccc; | |||
border-radius: 20px; | |||
padding: 8px 12px; | |||
transition: box-shadow 0.2s; | |||
} | |||
#searchInput:focus { | |||
box-shadow: 0 0 6px #0466c8; | |||
outline: none; | |||
} | |||
/* ✅ קו מפריד אלגנטי */ | |||
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; | |||
} | } | ||
גרסה מ־21:48, 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;
}
/* ✅ רקע כללי יפה */
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;
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);
}
/* ✅ תיבת חיפוש מעוצבת */
#searchInput {
background: #ffffffcc;
border: 1px solid #ccc;
border-radius: 20px;
padding: 8px 12px;
transition: box-shadow 0.2s;
}
#searchInput:focus {
box-shadow: 0 0 6px #0466c8;
outline: none;
}
/* ✅ קו מפריד אלגנטי */
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;
}