מדיה ויקי:Vector.css: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
אין תקציר עריכה |
אין תקציר עריכה |
||
שורה 1: | שורה 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | /* All CSS here will be loaded for users of the Vector skin */ | ||
body { | body { | ||
background-color: # | background-color: #f8e8d2; /* צבע רקע חום בהיר יותר */ | ||
} | } | ||
/* עיצוב גוף האתר | /* עיצוב גוף האתר */ | ||
#content { | #content { | ||
background: | background-color: #f2d5c2; /* צבע רקע בהיר יותר */ | ||
color: #d1bf5d; /* צבע הטקסט */ | color: #d1bf5d; /* צבע הטקסט */ | ||
padding: 20px; | padding: 20px; | ||
שורה 17: | שורה 17: | ||
} | } | ||
/* | /* עיצוב טקסט עם הצללה */ | ||
#content | #content p, #content h1, #content h2, #content h3 { | ||
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* הוספת הצללה מסביב לטקסט */ | |||
color: #d1bf5d; /* צבע הטקסט * | |||
#content h1, #content h2, #content h3 { | |||
text-shadow: | |||
color: #d1bf5d; /* צבע | |||
גרסה מ־21:15, 14 בספטמבר 2024
/* All CSS here will be loaded for users of the Vector skin */ body { background-color: #f8e8d2; /* צבע רקע חום בהיר יותר */ } /* עיצוב גוף האתר */ #content { background-color: #f2d5c2; /* צבע רקע בהיר יותר */ color: #d1bf5d; /* צבע הטקסט */ padding: 20px; border-radius: 10px; /* פינות מעוגלות */ box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* צל קל מסביב */ transition: box-shadow 0.3s ease, transform 0.3s ease; /* מעבר חלק */ width: 100%; /* שמירה על רוחב מלא של התוכן */ max-width: 1200px; /* רוחב מקסימלי */ margin: 50px auto; /* מרכז את גוף האתר */ } /* עיצוב טקסט עם הצללה */ #content p, #content h1, #content h2, #content h3 { text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* הוספת הצללה מסביב לטקסט */ color: #d1bf5d; /* צבע הטקסט *