index.css 4.6 KB

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