Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
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. }