לעיתון השבוע (פרשת שמיני) - לחצו כאן!
לעיתון השבוע (פרשת שמיני) - לחצו כאן!
/* כפתור הווצאפ הצף */ #whatsapp-button { position: fixed; bottom: 20px; right: 20px; background-color: #25d366; border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; z-index: 1000; } #whatsapp-button img { width: 35px; } /* חלונית הצ'אט */ #chat-window { position: fixed; bottom: 90px; right: 20px; width: 300px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); display: none; /* מוסתר כברירת מחדל */ flex-direction: column; z-index: 1000; overflow: hidden; font-family: Arial, sans-serif; } #chat-header { background-color: #075e54; color: white; padding: 15px; text-align: right; } #chat-body { height: 200px; padding: 15px; background-color: #e5ddd5; overflow-y: auto; text-align: right; } #chat-footer { padding: 10px; display: flex; border-top: 1px solid #ddd; } #chat-footer input { flex: 1; padding: 5px; border: 1px solid #ccc; border-radius: 5px; }