diff --git a/assets/app.js b/assets/app.js index 566236b..a213214 100644 --- a/assets/app.js +++ b/assets/app.js @@ -146,10 +146,10 @@ if (animationsEnabled === null) animationsEnabled = true; function applyTheme() { if (isDarkMode) { document.body.classList.add('dark-mode'); - document.getElementById('themeBtn').innerHTML = '🌙'; + document.getElementById('themeBtn').innerHTML = ''; } else { document.body.classList.remove('dark-mode'); - document.getElementById('themeBtn').innerHTML = '☀️'; + document.getElementById('themeBtn').innerHTML = ''; } handleAmbientDrift(); updateMotionBtn(); @@ -168,7 +168,7 @@ applyTheme(); function updateMotionBtn() { if (!motionBtn) return; - motionBtn.innerHTML = animationsEnabled ? '✨' : '🚫'; + motionBtn.innerHTML = animationsEnabled ? '' : ''; motionBtn.title = animationsEnabled ? 'Toggle Animations' : 'Animations disabled'; } @@ -621,7 +621,7 @@ function render() { const isLocked = part.locked ? 'is-locked' : ''; const isFinished = part.finished ? 'is-finished' : ''; const isMinimized = part.minimized ? 'is-minimized' : ''; - const lockIcon = part.locked ? '🔒' : '🔓'; + const lockIcon = part.locked ? '' : ''; const lockBtnClass = part.locked ? 'btn-lock locked-active' : 'btn-lock'; const controlsDimmed = (part.locked || part.finished) ? 'dimmed' : ''; const hideControls = (part.finished || part.minimized) ? 'hidden-controls' : ''; @@ -637,18 +637,18 @@ function render() { const partCardFullClass = `${isLocked} ${isFinished} ${isMinimized} ${finishPulseClass}`; const lockDisabled = part.locked ? 'disabled' : ''; const actionsHtml = part.minimized - ? `
` + ? `
` : `
- - - + + +
`; const countSubtext = part.minimized ? '' : `
${part.max !== null ? `${part.count} / ${part.max}` : 'No max set'} - +
`; diff --git a/assets/style.css b/assets/style.css index 91db5ef..b51b19c 100644 --- a/assets/style.css +++ b/assets/style.css @@ -127,6 +127,7 @@ h1 { color: var(--header-text); transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s; transform: translateY(0); + font-family: inherit; } .header-btn:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 6px 14px rgba(0,0,0,0.12); } .header-btn:active { transform: translateY(0) scale(0.96); box-shadow: none; } diff --git a/index.html b/index.html index 926e7c3..15f04f7 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ + @@ -23,12 +24,12 @@

Toadstool Cottage Counter

- - - - - - + + + + + +