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 1.1KB

il y a 8 ans
il y a 8 ans
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. color:white;
  19. padding: 10px;
  20. font-family:"courier new";
  21. position: absolute;
  22. top: 10px;
  23. right: 10px;
  24. font-size: 9pt;
  25. }
  26. #message {
  27. background-color: black;
  28. color:white;
  29. padding: 10px;
  30. font-family:"courier new";
  31. position: absolute;
  32. bottom: 10px;
  33. right: 10px;
  34. font-size: 9pt;
  35. }
  36. ul {
  37. list-style-type: none;
  38. padding: 0px;
  39. margin: 0px;
  40. }
  41. .visible {
  42. visibility: visible;
  43. opacity: 1;
  44. transform: scale(1);
  45. transition: opacity .08s linear, transform .08s linear;
  46. }
  47. .hidden {
  48. visibility: hidden;
  49. opacity: 0;
  50. transform: scale(.5);
  51. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  52. }
  53. a {
  54. color: yellow;
  55. }