main.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. html {
  2. --background: #2A2342;
  3. --footer-background: #201936;
  4. --footer-height: 70px;
  5. --button-hover-color: #BB464B;
  6. --button-hover-hover: #e0684b;
  7. --button-hover-background: #162D3A;
  8. --font-size: 20px;
  9. }
  10. html, body, #root {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. margin: 0;
  15. overflow: hidden;
  16. font-size: var(--font-size);
  17. background: var(--background);
  18. font-family: "acumin-pro-condensed";
  19. font-weight: normal;
  20. }
  21. .hidden {
  22. display: none !important;
  23. }
  24. .clickInterceptor {
  25. position: absolute;
  26. width: 100%;
  27. height: 100%;
  28. z-index: 99;
  29. top:0;
  30. left:0;
  31. }
  32. #droptext {
  33. position: absolute;
  34. text-align: center;
  35. color: #fff;
  36. height: 50px;
  37. width: 100%;
  38. bottom: 50px;
  39. }
  40. #logoContainer {
  41. position: absolute;
  42. top:0;
  43. left:0;
  44. width: 100%;
  45. height: calc(100% - 70px);
  46. pointer-events: none;
  47. display: grid;
  48. grid-template-rows: 100%;
  49. grid-template-columns: 100%;
  50. align-items: center;
  51. justify-items: center;
  52. }
  53. #logo {
  54. width: 150px;
  55. pointer-events: none;
  56. }
  57. #errorZone {
  58. position: absolute;
  59. width: 50%;
  60. left: 25%;
  61. bottom: 80px;
  62. background-color: #C73228;
  63. padding:20px;
  64. border-radius: 5px;
  65. color:white;
  66. display: grid;
  67. grid-template-columns: 1fr 32px;
  68. .message {
  69. grid-column: 1;
  70. grid-row: 1;
  71. align-self: center;
  72. }
  73. button {
  74. grid-column: 2;
  75. grid-row: 1;
  76. padding: 0;
  77. cursor: pointer;
  78. background: transparent;
  79. border: 0;
  80. -webkit-appearance: none;
  81. color: #000;
  82. text-shadow: 0 1px 0 #fff;
  83. opacity: .4;
  84. font-size: 1.8em;
  85. &:hover {
  86. transform: scale(1.2);
  87. }
  88. }
  89. }
  90. @media (max-width: 768px) {
  91. html {
  92. --footer-height: 50px;
  93. --font-size: 16px;
  94. }
  95. }