| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- figure {
- display: table;
- text-align: center;
- width: 75px;
- margin: 10px auto;
- /* Disable double tap zooming */
- touch-action: manipulation;
- }
- figure:focus-within a img, figure.focus a img {
- filter: brightness(40%);
- }
- figure:focus-within figcaption .label, figure.focus figcaption .label {
- background: #000;
- color: #fff;
- }
- figcaption {
- font-family: "Arial";
- font-size: 10.5px;
- text-align: center;
- letter-spacing: 0.4px;
- }
- figcaption .label {
- display: inline-block;
- max-width: 31em;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- background: rgba(255, 255, 255, 0.5);
- padding: 1px 2px 1px 2px;
- margin-top: -4px;
- text-align: center;
- }
- figcaption .label.alias {
- font-style: italic;
- }
|