I wrote this up today to help me identify unentered letters and to make click areas easier to hit and read in the word list. Feel free to use it and give me any feedback for tweaking, I've been using it the past few hours and I'm really liking the usability improvements. I use the Stylish plugin for applying the CSS to the site, it's pretty plug-and-play. Enjoy!
Code:
#content .wordboxvalue:empty, #content .boxvalue:empty{ background-color: rgba(255, 0, 0, .15); } #content .wordbox.selected .wordboxvalue:empty, #content .wordbox.selected_main .wordboxvalue:empty, #content .box.selected .boxvalue:empty, #content .box.selected_main .boxvalue:empty { background-color: transparent; } #content .boxvalue { position: relative; top: -9px; padding-top: 9px; } #content .box { user-select: none; } #content .wordbox { height: 30px; width: 30px; margin-top: 12px; border: 1px solid #cbcbcb; user-select: none; } #content .wordboxvalue { height: 100%; width: 100%; font-size: 24px; line-height: 32px; } #content .wordboxnumber { width: 100%; margin-top: -10px; }
Comment