Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.css 613B

12345678910111213141516171819
  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. }