Anders and Briegel in Python
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 řádky
605B

  1. html, body { margin: 0; padding: 0; overflow: hidden; font-size: 10pt; font-family: "courier new"; }
  2. #infoholder {
  3. background: black; color:white; padding: 5px; margin:0px; position: absolute; top:5px; left:5px; font-family:"courier new"; text-align: center; font-size:10pt;
  4. height:15px;
  5. border-radius:3px;
  6. }
  7. .visible {
  8. visibility: visible;
  9. opacity: 1;
  10. transform: scale(1);
  11. transition: opacity .08s linear, transform .08s linear;
  12. }
  13. .hidden {
  14. visibility: hidden;
  15. opacity: 0;
  16. transform: scale(.5);
  17. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  18. }