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

מתוך אוצר מהרי''ט
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
 
(7 גרסאות ביניים של אותו משתמש אינן מוצגות)
שורה 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 {
    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; /* צבע הקישור כשהוא נלחץ לאפור */
}
}

גרסה אחרונה מ־17:12, 20 בנובמבר 2024

/* All CSS here will be loaded for users of the Vector skin */
/* רקע הדף */
body {
    background-color: #f5e6cc; /* חום בהיר */
}