Simulate graph states in the browser
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.

104 lines
1.6KB

  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. #version {
  41. color:black;
  42. padding: 10px;
  43. font-family: monospace;
  44. position: absolute;
  45. bottom: 10px;
  46. left: 10px;
  47. font-size: 9pt;
  48. }
  49. #help {
  50. color:black;
  51. padding: 10px;
  52. font-family: monospace;
  53. position: absolute;
  54. bottom: 10px;
  55. right: 10px;
  56. font-size: 9pt;
  57. }
  58. ul {
  59. list-style-type: none;
  60. padding: 0px;
  61. margin: 0px;
  62. }
  63. li{
  64. padding:3px;
  65. padding-left: 0em;
  66. }
  67. .visible {
  68. visibility: visible;
  69. opacity: 1;
  70. transform: scale(1);
  71. transition: opacity .08s linear, transform .08s linear;
  72. }
  73. .hidden {
  74. visibility: hidden;
  75. opacity: 0;
  76. transform: scale(.5);
  77. transition: visibility .08s, opacity .08s linear, transform .08s linear;
  78. }
  79. a {
  80. color: yellow;
  81. }
  82. h3 {
  83. padding-top: 0px;
  84. padding-bottom: 0px;
  85. margin-top: 2px;
  86. margin-bottom: 2px;
  87. }