index.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .gi-collapse-card {
  2. margin: 8px;
  3. }
  4. .gi-collapse-card .ant-collapse {
  5. box-sizing: border-box;
  6. width: 100%;
  7. background-color: var(--component-background);
  8. border: none;
  9. border-radius: 8px;
  10. box-shadow: -1px -1px 4px 0 rgba(223, 223, 223, 0.5), -2px 2px 4px 0 rgba(244, 244, 244, 0.5), 2px 3px 8px 2px rgba(151, 151, 151, 0.05);
  11. }
  12. .gi-collapse-card .ant-collapse .ant-collapse-item {
  13. padding: 4px;
  14. border: none;
  15. }
  16. .gi-collapse-card .ant-collapse-content {
  17. padding: 4px;
  18. border: none;
  19. }
  20. .logo-container {
  21. background: #fff;
  22. }
  23. .tugraph-logo {
  24. height: 200px;
  25. }
  26. .tugraph-form-container {
  27. padding: 24px;
  28. }
  29. /* KEYFRAMES */
  30. .spinner-box {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. width: 100%;
  35. height: 100vh;
  36. background-color: #1d2630;
  37. }
  38. @keyframes configure-clockwise {
  39. 0% {
  40. transform: rotate(0);
  41. }
  42. 25% {
  43. transform: rotate(90deg);
  44. }
  45. 50% {
  46. transform: rotate(180deg);
  47. }
  48. 75% {
  49. transform: rotate(270deg);
  50. }
  51. 100% {
  52. transform: rotate(360deg);
  53. }
  54. }
  55. @keyframes configure-xclockwise {
  56. 0% {
  57. transform: rotate(45deg);
  58. }
  59. 25% {
  60. transform: rotate(-45deg);
  61. }
  62. 50% {
  63. transform: rotate(-135deg);
  64. }
  65. 75% {
  66. transform: rotate(-225deg);
  67. }
  68. 100% {
  69. transform: rotate(-315deg);
  70. }
  71. }
  72. /* X-ROTATING BOXES */
  73. .configure-border-1 {
  74. position: absolute;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. width: 115px;
  79. height: 115px;
  80. padding: 3px;
  81. background: #fb5b53;
  82. animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
  83. }
  84. .configure-border-2 {
  85. left: -115px;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. width: 115px;
  90. height: 115px;
  91. padding: 3px;
  92. background: #3ff9dc;
  93. transform: rotate(45deg);
  94. animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
  95. }
  96. .configure-core {
  97. width: 100%;
  98. height: 100%;
  99. background-color: #1d2630;
  100. }
  101. .loading-text {
  102. position: absolute;
  103. color: #fff;
  104. font-weight: 700;
  105. font-size: 16px;
  106. }
  107. .graphinsight-container-extra {
  108. flex-shrink: 0;
  109. box-sizing: border-box;
  110. margin: 0px;
  111. background: var(--background-color);
  112. }