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

מתוך אוצר מהרי''ט
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
 
(3 גרסאות ביניים של אותו משתמש אינן מוצגות)
שורה 1: שורה 1:
<!DOCTYPE html>
/* All CSS here will be loaded for users of the Vector skin */
<html lang="he">
/* רקע הדף */
<head>
body {
    <meta charset="UTF-8">
    background-color: #f5e6cc; /* חום בהיר */
    <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>

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

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