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.

65 lines
1.1KB

  1. html, body { margin: 0; padding: 0; overflow: hidden; font-size: 10pt; font-family: "courier new"; }
  2. #node_info {
  3. background: rgba(0, 0, 0, .8);
  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:9pt;
  13. /*height:15px;*/
  14. border-radius:3px;
  15. pointer-events: none;
  16. }
  17. #server_info {
  18. background-color: black;
  19. color:white;
  20. padding: 10px;
  21. font-family:"courier new";
  22. position: absolute;
  23. bottom: 10px;
  24. right: 10px;
  25. font-size: 9pt;
  26. }
  27. #pallette {
  28. background-color: black;
  29. color:white;
  30. padding: 10px;
  31. font-family:"courier new";
  32. position: absolute;
  33. top: 10px;
  34. right: 10px;
  35. font-size: 9pt;
  36. }
  37. ul {
  38. list-style-type: none;
  39. padding: 0px;
  40. margin: 0px;
  41. }
  42. .visible {
  43. visibility: visible;
  44. opacity: 1;
  45. transform: scale(1);
  46. transition: opacity .08s linear, transform .08s linear;
  47. }
  48. .hidden {
  49. visibility: hidden;
  50. opacity: 0;
  51. transform: scale(.5);
  52. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  53. }
  54. a {
  55. color: yellow;
  56. }