index.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. html,
  2. body,
  3. #root,
  4. .App {
  5. height: 100%;
  6. background-color: #000;
  7. font-size: 1rem;
  8. }
  9. body {
  10. margin: 0;
  11. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. }
  15. .dropdown-menu {
  16. background-color: #000 !important;
  17. }
  18. a,
  19. a:link,
  20. a:visited {
  21. color: #fff;
  22. text-decoration: none !important;
  23. }
  24. a:active,
  25. a:hover {
  26. color: #ccc !important;
  27. }
  28. select {
  29. border-color: red;
  30. }
  31. .select div:hover {
  32. background-color: #4038ff !important;
  33. }
  34. ::-moz-selection,
  35. ::selection,
  36. .select-selected,
  37. .select-items div:hover {
  38. color: white;
  39. background-color: #4038ff !important;
  40. }
  41. h3 {
  42. font-size: 1rem;
  43. }
  44. .box {
  45. color: white;
  46. margin: 5px;
  47. padding: 15px;
  48. background-color: #4038ff;
  49. text-align: center;
  50. }
  51. .box a:hover,
  52. .box a:active {
  53. color: #fff !important;
  54. -background: #4038ff;
  55. }
  56. table td {
  57. border-top: none !important;
  58. }
  59. .box .table-hover tbody tr:hover {
  60. color: white;
  61. cursor: pointer;
  62. }
  63. .title {
  64. position: absolute;
  65. top: 0px;
  66. left: 0px;
  67. }
  68. .user {
  69. min-width: 75px;
  70. }
  71. .mint-label {
  72. min-width: 75px;
  73. }
  74. /* calendar */
  75. .rct-sidebar-row {
  76. color: #fff;
  77. }
  78. .rct-item-content {
  79. font-size: 0.8em;
  80. }
  81. /* timeline */
  82. .member-tooltip .tooltip-inner div {
  83. width: 350px !important;
  84. }
  85. .member-tooltip .tooltip-inner {
  86. padding: 0 !important;
  87. }
  88. .timeline-container {
  89. display: flex;
  90. flex-direction: column;
  91. position: relative;
  92. margin: 40px 0;
  93. }
  94. .timeline-container::after {
  95. background-color: #e17b77;
  96. content: "";
  97. position: absolute;
  98. left: calc(50% - 2px);
  99. width: 4px;
  100. height: 100%;
  101. }
  102. .timeline-item {
  103. display: flex;
  104. justify-content: flex-end;
  105. padding-right: 30px;
  106. position: relative;
  107. margin: 10px 0;
  108. width: 50%;
  109. }
  110. .timeline-item:nth-child(odd) {
  111. align-self: flex-end;
  112. justify-content: flex-start;
  113. padding-left: 30px;
  114. padding-right: 0;
  115. }
  116. .timeline-item-content {
  117. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  118. border-radius: 5px;
  119. background-color: #fff;
  120. display: flex;
  121. flex-direction: column;
  122. align-items: flex-end;
  123. padding: 15px;
  124. position: relative;
  125. width: 400px;
  126. max-width: 70%;
  127. text-align: right;
  128. overflow: hidden;
  129. }
  130. .timeline-item-content::after {
  131. content: " ";
  132. background-color: #fff;
  133. box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.2);
  134. position: absolute;
  135. right: -7.5px;
  136. top: calc(50% - 7.5px);
  137. transform: rotate(45deg);
  138. width: 15px;
  139. height: 15px;
  140. }
  141. .timeline-item:nth-child(odd) .timeline-item-content {
  142. text-align: left;
  143. align-items: flex-start;
  144. }
  145. .timeline-item:nth-child(odd) .timeline-item-content::after {
  146. right: auto;
  147. left: -7.5px;
  148. box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
  149. }
  150. .timeline-item-content .tag {
  151. color: #fff;
  152. font-size: 12px;
  153. font-weight: bold;
  154. top: 5px;
  155. left: 5px;
  156. letter-spacing: 1px;
  157. padding: 5px;
  158. position: absolute;
  159. text-transform: uppercase;
  160. }
  161. .timeline-item:nth-child(odd) .timeline-item-content .tag {
  162. left: auto;
  163. right: 5px;
  164. }
  165. .timeline-item-content time {
  166. color: #777;
  167. font-size: 12px;
  168. font-weight: bold;
  169. }
  170. .timeline-item-content p {
  171. font-size: 16px;
  172. line-height: 24px;
  173. margin: 15px 0;
  174. max-width: 250px;
  175. }
  176. .timeline-item-content a {
  177. font-size: 14px;
  178. font-weight: bold;
  179. }
  180. .timeline-item-content a::after {
  181. content: " ►";
  182. font-size: 12px;
  183. }
  184. .timeline-item-content .circle {
  185. background-color: #fff;
  186. border: 3px solid #e17b77;
  187. border-radius: 50%;
  188. position: absolute;
  189. top: calc(50% - 10px);
  190. right: -40px;
  191. width: 20px;
  192. height: 20px;
  193. z-index: 100;
  194. }
  195. .timeline-item:nth-child(odd) .timeline-item-content .circle {
  196. right: auto;
  197. left: -40px;
  198. }
  199. @media only screen and (max-width: 1023px) {
  200. .timeline-item-content {
  201. max-width: 100%;
  202. }
  203. }
  204. @media only screen and (max-width: 767px) {
  205. .timeline-item-content,
  206. .timeline-item:nth-child(odd) .timeline-item-content {
  207. padding: 15px 10px;
  208. text-align: center;
  209. align-items: center;
  210. }
  211. .timeline-item-content .tag {
  212. width: calc(100% - 10px);
  213. text-align: center;
  214. }
  215. .timeline-item-content time {
  216. margin-top: 20px;
  217. }
  218. .timeline-item-content a {
  219. text-decoration: underline;
  220. }
  221. .timeline-item-content a::after {
  222. display: none;
  223. }
  224. }
  225. .waiting-validators .list-group-item {
  226. background-color: #4038ff !important;
  227. }
  228. .connecting {
  229. background: orange;
  230. position: fixed;
  231. right: 0px;
  232. top: 0px;
  233. padding: 5px;
  234. }
  235. .connected {
  236. background: green;
  237. position: fixed;
  238. right: 0px;
  239. top: 0px;
  240. padding: 5px;
  241. }
  242. .back {
  243. position: absolute;
  244. right: 0px;
  245. top: 0px;
  246. }
  247. .left {
  248. left: 0px;
  249. }
  250. .footer {
  251. text-align: center;
  252. posoition: fixed;
  253. bottom: 0px;
  254. padding: 5px;
  255. width: 100%;
  256. }
  257. .footer-hidden {
  258. position: fixed;
  259. right: 0px;
  260. bottom: 0px;
  261. }