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.

79 lines
1.3KB

  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. top: 10px;
  24. right: 10px;
  25. font-size: 9pt;
  26. }
  27. #node_data {
  28. background-color: black;
  29. color:white;
  30. padding: 10px;
  31. font-family:"courier new";
  32. position: absolute;
  33. top: 10px;
  34. left: 10px;
  35. font-size: 9pt;
  36. }
  37. ul {
  38. list-style-type: none;
  39. padding: 0px;
  40. margin: 0px;
  41. }
  42. li{
  43. padding:3px;
  44. padding-left: 0em;
  45. }
  46. .visible {
  47. visibility: visible;
  48. opacity: 1;
  49. transform: scale(1);
  50. transition: opacity .08s linear, transform .08s linear;
  51. }
  52. .hidden {
  53. visibility: hidden;
  54. opacity: 0;
  55. transform: scale(.5);
  56. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  57. }
  58. a {
  59. color: yellow;
  60. }
  61. h3 {
  62. padding-top: 0px;
  63. padding-bottom: 0px;
  64. margin-top: 2px;
  65. margin-bottom: 2px;
  66. }