מדיה ויקי:Common.css: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
אין תקציר עריכה |
אין תקציר עריכה תגית: שוחזרה |
||
שורה 3: | שורה 3: | ||
body { | body { | ||
font-family: 'David Libre', serif; | font-family: 'David Libre', serif; | ||
font-size: 19px; /* | font-size: 19px; /* שינוי גודל הפונט */ | ||
} | } | ||
/* הגדרות הקיימות שלך */ | |||
.bookshelf-container { | .bookshelf-container { | ||
שורה 49: | שורה 51: | ||
} | } | ||
/* התוכן בעניינים */ | |||
#toc { | #toc { | ||
float: right; | float: right; | ||
margin: 0 0 1em 1em; | margin: 0 0 1em 1em; | ||
width: 20%; | width: 20%; | ||
position: absolute; | position: absolute; | ||
right: -250px; /* מיקום מחוץ לשוליים הימניים */ | right: -250px; /* מיקום מחוץ לשוליים הימניים */ | ||
שורה 75: | שורה 61: | ||
border: none; /* להסרת הריבוע מסביב */ | border: none; /* להסרת הריבוע מסביב */ | ||
background: none; /* להסרת צבע רקע */ | background: none; /* להסרת צבע רקע */ | ||
font-size: 75%; /* שינוי גודל הפונט בתוכן העניינים */ | |||
margin-right: 70px; /* משנה את המרווח בין תוכן העניינים לטקסט */ | margin-right: 70px; /* משנה את המרווח בין תוכן העניינים לטקסט */ | ||
} | } | ||
#toc .toctitle { | #toc .toctitle { | ||
display: none; | display: none; | ||
} | } | ||
.mainpage #toc { | .mainpage #toc { | ||
display: none; | display: none; | ||
} | } | ||
# | |||
/* הסתרת כל תפריטי הצד, למעט התפריט העליון עם הלוגו והקישור לעמוד הראשי */ | |||
#mw-panel { | |||
display: none; | |||
} | |||
#p-logo { | |||
display: block; | |||
} | |||
#n-mainpage-description { | |||
display: block; | |||
} | } | ||
#n-recentchanges, #n-randompage, #n-helppage { | |||
display: none; | display: none; | ||
} | |||
/* הגדרות תוכן הדף */ | |||
#content { | |||
margin-left: 10%; | |||
margin-right: 10%; | |||
} | |||
@media screen and (max-width: 768px) { | |||
#content { | |||
margin-left: 5%; | |||
margin-right: 5%; | |||
} | |||
} | } |
גרסה מ־20:03, 17 באוגוסט 2024
@import url('https://fonts.googleapis.com/css2?family=David+Libre:wght@400;700&display=swap'); body { font-family: 'David Libre', serif; font-size: 19px; /* שינוי גודל הפונט */ } /* הגדרות הקיימות שלך */ .bookshelf-container { display: flex; flex-direction: column; align-items: center; background-color: #F5F5DC; padding: 20px; border: 2px solid #8B4513; } .shelf { display: flex; justify-content: center; align-items: flex-end; width: 100%; padding: 10px; border-bottom: 5px solid #8B4513; margin-bottom: 20px; } .book { width: 100px; height: 150px; margin: 0 10px; display: flex; align-items: center; justify-content: center; border: 1px solid #000; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); transform: rotate(-5deg); transition: transform 0.3s ease; } .book:hover { transform: rotate(0deg); } .book-link { text-decoration: none; color: white; font-weight: bold; text-align: center; } /* התוכן בעניינים */ #toc { float: right; margin: 0 0 1em 1em; width: 20%; position: absolute; right: -250px; /* מיקום מחוץ לשוליים הימניים */ top: 100px; /* התאמה לפי הצורך */ border: none; /* להסרת הריבוע מסביב */ background: none; /* להסרת צבע רקע */ font-size: 75%; /* שינוי גודל הפונט בתוכן העניינים */ margin-right: 70px; /* משנה את המרווח בין תוכן העניינים לטקסט */ } #toc .toctitle { display: none; } .mainpage #toc { display: none; } /* הסתרת כל תפריטי הצד, למעט התפריט העליון עם הלוגו והקישור לעמוד הראשי */ #mw-panel { display: none; } #p-logo { display: block; } #n-mainpage-description { display: block; } #n-recentchanges, #n-randompage, #n-helppage { display: none; } /* הגדרות תוכן הדף */ #content { margin-left: 10%; margin-right: 10%; } @media screen and (max-width: 768px) { #content { margin-left: 5%; margin-right: 5%; } }