reset.css 404 B

12345678910111213141516171819202122
  1. *,*:before,*:after {
  2. box-sizing: border-box;
  3. }
  4. /* :where(svg) {
  5. max-width: 1rem;
  6. } */
  7. a {
  8. /* Places underlines below the descenders */
  9. text-underline-position: under;
  10. /* Sets the thickness as a percentage of the font size */
  11. text-decoration-thickness: 8;
  12. color: var(--clr-blue-500);
  13. }
  14. a:hover {
  15. color: var(--clr-blue-700);
  16. }
  17. a:focus {
  18. color: var(--clr-red-700);
  19. }