icon.css 791 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. figure {
  2. display: table;
  3. text-align: center;
  4. width: 75px;
  5. margin: 10px auto;
  6. /* Disable double tap zooming */
  7. touch-action: manipulation;
  8. }
  9. figure:focus-within a img, figure.focus a img {
  10. filter: brightness(40%);
  11. }
  12. figure:focus-within figcaption .label, figure.focus figcaption .label {
  13. background: #000;
  14. color: #fff;
  15. }
  16. figcaption {
  17. font-family: "Arial";
  18. font-size: 10.5px;
  19. text-align: center;
  20. letter-spacing: 0.4px;
  21. }
  22. figcaption .label {
  23. display: inline-block;
  24. max-width: 31em;
  25. white-space: nowrap;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. background: rgba(255, 255, 255, 0.5);
  29. padding: 1px 2px 1px 2px;
  30. margin-top: -4px;
  31. text-align: center;
  32. }
  33. figcaption .label.alias {
  34. font-style: italic;
  35. }