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

מתוך אוצר מהרי''ט
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
 
(2 גרסאות ביניים של אותו משתמש אינן מוצגות)
שורה 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-color: #d39c7c; /* צבע גוף האתר */
    color: white; /* צבע הטקסט */
    position: relative;
    overflow: hidden;
}
/* קישורים */
#content a {
    color: gray;
}
/* אפקט התכהות סביב הטקסט */
#content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 5%, #6d3327 95%);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.6;
}
}

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

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