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.

20 lines
613B

  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; width:200px; height:15px;
  4. border-radius:3px;
  5. }
  6. .visible {
  7. visibility: visible;
  8. opacity: 1;
  9. transform: scale(1);
  10. transition: opacity .08s linear, transform .08s linear;
  11. }
  12. .hidden {
  13. visibility: hidden;
  14. opacity: 0;
  15. transform: scale(.5);
  16. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  17. }