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.

48 lines
925B

  1. html, body { margin: 0; padding: 0; overflow: hidden; font-size: 10pt; font-family: "courier new"; }
  2. #infoholder {
  3. background: black;
  4. color:white;
  5. padding: 5px;
  6. margin:0px;
  7. position: absolute;
  8. top:5px;
  9. left:5px;
  10. font-family:"courier new";
  11. text-align: center;
  12. font-size:10pt;
  13. height:15px;
  14. border-radius:3px;
  15. }
  16. #pallette {
  17. background-color: black;
  18. /*border-radius:3px;*/
  19. color:white;
  20. padding: 10px;
  21. font-family:"courier new";
  22. position: absolute;
  23. top: 10px;
  24. right: 10px;
  25. font-size: 9pt;
  26. }
  27. ul {
  28. list-style-type: none;
  29. padding: 0px;
  30. margin: 0px;
  31. }
  32. .visible {
  33. visibility: visible;
  34. opacity: 1;
  35. transform: scale(1);
  36. transition: opacity .08s linear, transform .08s linear;
  37. }
  38. .hidden {
  39. visibility: hidden;
  40. opacity: 0;
  41. transform: scale(.5);
  42. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  43. }