<
<
<
<רשימת קניות
<
body { font-family: Arial, sans-serif; margin: 20px; background-color: #f9f9f9; color: #333; }
h1 { color: #0056b3; text-align: center; }
h2 { color: #555; border-bottom: 2px solid #0056b3; padding-bottom: 5px; margin-top: 25px; font-size: 20px; }
.container { max-width: 600px; margin: 0 auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
ul { list-style: none; padding: 0; }
li { padding: 10px; border-bottom: 1px solid #eee; display: flex; align-items: center; font-size: 18px; }
li:last-child { border-bottom: none; }
input[type="checkbox"] { margin-left: 10px; transform: scale(1.2); }
.item-text { cursor: pointer; flex-grow: 1; }
.checked { text-decoration: line-through; color: #888; }
<
רשימת קניות 🛒
🍎 פירות וירקות
- <<תפוחים ירוקים
- <<בטטות
- <<בצל
- <<שום
🥛 מוצרי חלב ומקרר
- <<גבינה צהובה
- <<שמנת מתוקה
- <<מעדנים (לסבי ולילדים)
🍞 מאפייה ומזווה
- <<קפה נמס (לא של פסח)
- <<לחם
- <<פיתות
- <<קמח
❄️ קפואים ובשרים
- <<צ'יפס קפוא (2)
- <<שניצל
- <<דגים
🥤 שתייה
- <<ויטמינציק פטל
- <<מיץ ענבים
🧼 ניקיון ובית
- <<שקיות אוכל טובות
- <<ג'ל כביסה
- <<נייר אפייה
- <<מילוי למרסס חלונות
- <<תרסיס אקונומיקה
🍿 נשנושים
<
document.querySelectorAll('input[type="checkbox"]').forEach(cb => {
cb.addEventListener('change', function() {
this.nextElementSibling.classList.toggle('checked', this.checked);
});
});