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 605B

il y a 8 ans
1234567891011121314151617181920
  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. }