view.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. body {
  2. margin: 0;
  3. font-family: 'Open Sans', --apple-system, "Helvetica Neue", Helvetica, Arial, sans-serf;
  4. font-size: 12px;
  5. text-rendering: geometricPrecision;
  6. }
  7. .background {
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 100%;
  13. background-color: #e6e6e6;
  14. }
  15. .center {
  16. position: fixed;
  17. margin: auto;
  18. top: 0;
  19. bottom: 0;
  20. left: 0;
  21. right: 0;
  22. user-select: none;
  23. -webkit-user-select: none;
  24. -moz-user-select: none;
  25. }
  26. .absolute {
  27. position: absolute;
  28. top: 0;
  29. bottom: 0;
  30. left: 0;
  31. right: 0;
  32. }
  33. .logo {
  34. width: 128px;
  35. height: 128px;
  36. }
  37. .spinner {
  38. -webkit-animation: orbit 0.5s infinite linear;
  39. animation: orbit 0.5s infinite linear;
  40. }
  41. @-webkit-keyframes orbit {
  42. 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  43. 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  44. }
  45. @keyframes orbit {
  46. 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  47. 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  48. }
  49. .background button {
  50. font-family: 'Open Sans', --apple-system, "Helvetica Neue", Helvetica, Arial, sans-serf;
  51. font-size: 12px;
  52. font-weight: 600;
  53. line-height: 1.25;
  54. text-align: center;
  55. vertical-align: middle;
  56. padding: 0 10px 0 10px;
  57. min-width: 60px;
  58. height: 30px;
  59. border-radius: 6px;
  60. transition: 0.1s;
  61. user-select: none;
  62. -webkit-user-select: none;
  63. -moz-user-select: none;
  64. color: #888;
  65. background-color: #e6e6e6;
  66. border: 1px solid #aaa;
  67. }
  68. .background button:hover {
  69. color: #e6e6e6;
  70. background-color: #aaa;
  71. cursor: hand;
  72. transition: 0.2s;
  73. }
  74. .background button:focus
  75. {
  76. outline: 0;
  77. }
  78. .sidebar {
  79. font-family: 'Open Sans', --apple-system, "Helvetica Neue", Helvetica, Arial, sans-serf;
  80. font-size: 12px;
  81. height: 100%;
  82. width: 0;
  83. position: fixed;
  84. transition: 0.2s;
  85. z-index: 1;
  86. top: 0;
  87. right: 0;
  88. background-color: #f8f8f8;
  89. overflow: hidden;
  90. border-left: 1px solid #ccc;
  91. }
  92. .sidebar-title {
  93. font-family: 'Open Sans', --apple-system, "Helvetica Neue", Helvetica, Arial, sans-serf;
  94. font-weight: 600;
  95. font-size: 12px;
  96. letter-spacing: 0.5px;
  97. height: 20px;
  98. margin: 0;
  99. padding: 20px;
  100. user-select: none;
  101. -webkit-user-select: none;
  102. -moz-user-select: none;
  103. }
  104. .sidebar-closebutton {
  105. padding: 8px 8px 8px 32px;
  106. text-decoration: none;
  107. font-size: 25px;
  108. color: #818181;
  109. opacity: 1.0;
  110. display: block;
  111. transition: 0.2s;
  112. position: absolute;
  113. top: 0;
  114. right: 15px;
  115. margin-left: 50px;
  116. user-select: none;
  117. -webkit-user-select: none;
  118. -moz-user-select: none;
  119. }
  120. .sidebar-closebutton:hover {
  121. color: #f1f1f1;
  122. }
  123. .sidebar-content {
  124. padding-left: 20px;
  125. padding-right: 20px;
  126. overflow-y: auto;
  127. position: relative;
  128. }
  129. .sidebar button {
  130. font-family: 'Open Sans', --apple-system, "Helvetica Neue", Helvetica, Arial, sans-serf;
  131. font-size: 12px;
  132. font-weight: 600;
  133. line-height: 1.25;
  134. text-align: center;
  135. vertical-align: middle;
  136. padding: 0 10px 0 10px;
  137. min-width: 60px;
  138. height: 30px;
  139. margin: 0;
  140. border-radius: 6px;
  141. transition: 0.1s;
  142. user-select: none;
  143. -webkit-user-select: none;
  144. -moz-user-select: none;
  145. color: #888;
  146. background-color: #f8f8f8;
  147. border: 1px solid #aaa;
  148. }
  149. .sidebar button:hover {
  150. color: #f8f8f8;
  151. background-color: #aaa;
  152. transition: 0.2s;
  153. }
  154. .sidebar button:focus {
  155. outline: 0;
  156. }
  157. .graph {
  158. display: block;
  159. position: absolute;
  160. background-color: #fff;
  161. text-rendering: geometricPrecision;
  162. user-select: none;
  163. -webkit-user-select: none;
  164. -moz-user-select: none;
  165. }
  166. .toolbar {
  167. padding: 0;
  168. margin: 0;
  169. }
  170. .toolbar button {
  171. background: None;
  172. border-radius: 6px;
  173. border: 0;
  174. margin: 0;
  175. padding: 0;
  176. fill: None;
  177. stroke: #777;
  178. cursor: hand;
  179. }
  180. .toolbar button:hover {
  181. fill: None;
  182. stroke: #000;
  183. }
  184. .toolbar button:focus {
  185. outline: 0;
  186. }