Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */ .hover-table td { transition: all 0.3s ease; padding: 5px; /* Optional: keeps some spacing */ } .hover-table td:hover { transform: scale(1.05); /* Scales the entire cell */ box-shadow: 0 0 10px rgba(224, 200, 130, 0.7); /* Glow around the cell */ border-radius: 5px; /* Rounds the cell corners */ background-color: rgba(224, 200, 130, 0.1); /* Optional: subtle background tint */ } .hover-table td:hover a { color: #E0C882; /* Optional: still changes link color on hover */ }