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.

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