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

מתוך אוצר מהרי''ט
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
שורה 1: שורה 1:
/* All CSS here will be loaded for users of the Vector skin */
<!DOCTYPE html>
body {
<html lang="he">
    background-color: #f5e6cc; /* צבע רקע למסגרת */
<head>
}
    <meta charset="UTF-8">
 
    <title>בדיקת אפקט התכהות סביב טקסט</title>
/* שינוי צבע החלק האמצעי (גוף האתר) */
    <style>
#content {
        body {
    background-color: #d39c7c; /* הצבע הנ"ל */
            background-color: #f5e6cc;
    color: white; /* צבע הטקסט בגוף האתר */
            margin: 0;
}
        }
 
        #content {
/* הוספת הצללה כהה סביב כל הטקסט בגוף האתר */
            background-color: #d39c7c;
#content * {
            color: white;
    text-shadow: 0 0 2px #6d3327; /* הצללה כהה קרובה לאות */
            padding: 20px;
}
            position: relative;
 
        }
/* עיצוב הקישורים בתוך גוף האתר */
        #content::after {
#content a {
            content: "";
     color: gray !important; /* צבע הקישורים לאפור */
            position: absolute;
}
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(circle, transparent 0%, #6d3327 100%);
            pointer-events: none;
        }
    </style>
</head>
<body>
    <div id="content">
        <h1>כותרת</h1>
        <p>זהו טקסט לדוגמה כדי לבדוק את האפקט של התכהות סביב הטקסט.</p>
        <p>עוד פסקה עם <a href="#">קישור לדוגמה</a>.</p>
     </div>
</body>
</html>

גרסה מ־16:05, 16 בספטמבר 2024

<!DOCTYPE html>
<html lang="he">
<head>
    <meta charset="UTF-8">
    <title>בדיקת אפקט התכהות סביב טקסט</title>
    <style>
        body {
            background-color: #f5e6cc;
            margin: 0;
        }
        #content {
            background-color: #d39c7c;
            color: white;
            padding: 20px;
            position: relative;
        }
        #content::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(circle, transparent 0%, #6d3327 100%);
            pointer-events: none;
        }
    </style>
</head>
<body>
    <div id="content">
        <h1>כותרת</h1>
        <p>זהו טקסט לדוגמה כדי לבדוק את האפקט של התכהות סביב הטקסט.</p>
        <p>עוד פסקה עם <a href="#">קישור לדוגמה</a>.</p>
    </div>
</body>
</html>