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.

106 lines
1.7KB

  1. html, body { margin: 0; padding: 0; overflow: hidden; font-size: 10pt; font-family: monospace; }
  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: monospace;
  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: monospace;
  22. position: absolute;
  23. top: 10px;
  24. right: 10px;
  25. font-size: 9pt;
  26. }
  27. #node_name {
  28. font-size: 12pt;
  29. }
  30. #node_data {
  31. background-color: black;
  32. color:white;
  33. padding: 10px;
  34. font-family: monospace;
  35. position: absolute;
  36. top: 10px;
  37. left: 10px;
  38. font-size: 9pt;
  39. }
  40. #options {
  41. background-color: rgba(256, 256, 256, .5);
  42. color: black;
  43. padding: 10px;
  44. font-family: monospace;
  45. position: absolute;
  46. text-align: right;
  47. bottom: 10px;
  48. right: 10px;
  49. font-size: 9pt;
  50. }
  51. #version {
  52. color:black;
  53. padding: 10px;
  54. font-family: monospace;
  55. position: absolute;
  56. bottom: 10px;
  57. left: 10px;
  58. font-size: 9pt;
  59. }
  60. ul {
  61. list-style-type: none;
  62. padding: 0px;
  63. margin: 0px;
  64. }
  65. li{
  66. padding:3px;
  67. padding-left: 0em;
  68. }
  69. .visible {
  70. visibility: visible;
  71. opacity: 1;
  72. transform: scale(1);
  73. transition: opacity .08s linear, transform .08s linear;
  74. }
  75. .hidden {
  76. visibility: hidden;
  77. opacity: 0;
  78. transform: scale(.5);
  79. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  80. }
  81. a {
  82. color: yellow;
  83. }
  84. h3 {
  85. padding-top: 0px;
  86. padding-bottom: 0px;
  87. margin-top: 2px;
  88. margin-bottom: 2px;
  89. }