Great project, I have two suggestions. There are two cursor: help declarations, it might make sense to combine them:
abbr, abbr:hover { /* Set the '?' cursor while hovering an abbreviation */ cursor: help; }
Also, where you reset margins and padding with *, would you consider adding box-sizing?
* { /* Reset margins and padding */ box-sizing: border-box; margin: 0; padding: 0; }
Great project, I have two suggestions. There are two cursor: help declarations, it might make sense to combine them:
abbr, abbr:hover { /* Set the '?' cursor while hovering an abbreviation */ cursor: help; }Also, where you reset margins and padding with *, would you consider adding box-sizing?
* { /* Reset margins and padding */ box-sizing: border-box; margin: 0; padding: 0; }