מדיה ויקי:Vector.css: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
אין תקציר עריכה |
אין תקציר עריכה |
||
| שורה 1: | שורה 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | |||
/* רקע הדף */ | |||
body { | |||
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; | |||
} | |||
גרסה מ־16:08, 16 בספטמבר 2024
/* All CSS here will be loaded for users of the Vector skin */
/* רקע הדף */
body {
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;
}