מדיה ויקי: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: #f5e6cc; /* צבע רקע | background-color: #f5e6cc; /* צבע רקע למסגרת */ | ||
} | } | ||
/* | /* עיצוב גוף האתר עם מעבר צבע מתכהה סביב הטקסט */ | ||
#content { | #content { | ||
background- | background: radial-gradient(circle, #d39c7c 0%, #6d3327 100%); /* מעבר צבע מתכהה */ | ||
color: white; /* צבע הטקסט בגוף האתר */ | color: white; /* צבע הטקסט בגוף האתר */ | ||
padding: 20px; | |||
/* שומרים על שאר ההגדרות ללא שינוי */ | |||
} | } | ||
/* | /* עיצוב קישורים בתוך גוף האתר */ | ||
#content a { | #content a { | ||
color: gray; /* צבע הקישורים לאפור */ | color: gray; /* צבע הקישורים לאפור */ | ||
גרסה מ־15:54, 16 בספטמבר 2024
/* All CSS here will be loaded for users of the Vector skin */
body {
background-color: #f5e6cc; /* צבע רקע למסגרת */
}
/* עיצוב גוף האתר עם מעבר צבע מתכהה סביב הטקסט */
#content {
background: radial-gradient(circle, #d39c7c 0%, #6d3327 100%); /* מעבר צבע מתכהה */
color: white; /* צבע הטקסט בגוף האתר */
padding: 20px;
/* שומרים על שאר ההגדרות ללא שינוי */
}
/* עיצוב קישורים בתוך גוף האתר */
#content a {
color: gray; /* צבע הקישורים לאפור */
}
#content a:visited {
color: gray; /* צבע הקישורים שביקרת בהם לאפור */
}
#content a:hover {
color: gray; /* צבע הקישור בעת ריחוף לאפור */
}
#content a:active {
color: gray; /* צבע הקישור כשהוא נלחץ לאפור */
}