You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_prejoin.scss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .prejoin {
  2. &-input-area {
  3. margin: 0 auto;
  4. text-align: center;
  5. &-label {
  6. display: block;
  7. margin-bottom: 5px;
  8. color: #ffffff;
  9. font-weight: 300;
  10. font-size: 15px;
  11. line-height: 24px;
  12. }
  13. }
  14. &-title {
  15. color: #fff;
  16. font-size: 24px;
  17. line-height: 32px;
  18. margin-bottom: 16px;
  19. }
  20. &-text-btns {
  21. display: flex;
  22. justify-content: space-between;
  23. }
  24. &-input-label {
  25. color: #A4B8D1;
  26. font-size: 13px;
  27. line-height: 20px;
  28. margin-top: 32px 0 8px 0;
  29. text-align: center;
  30. width: 100%;
  31. }
  32. &-checkbox {
  33. border: 0;
  34. height: 16px;
  35. margin-right: 8px;
  36. padding: 0;
  37. width: 16px;
  38. }
  39. &-checkbox-container {
  40. margin-bottom: 14px;
  41. width: 100%;
  42. }
  43. &-error {
  44. color: white;
  45. background-color: rgba(225, 45, 45, 0.6);
  46. border-radius: 3px;
  47. width: 100%;
  48. padding: 2px;
  49. box-sizing: border-box;
  50. margin-top: 4px;
  51. font-size: 13px;
  52. text-align: center;
  53. }
  54. }
  55. @mixin name-placeholder {
  56. color: #fff;
  57. font-weight: 300;
  58. opacity: 0.6;
  59. }
  60. .prejoin-preview {
  61. &-status {
  62. align-items: center;
  63. align-self: stretch;
  64. bottom: 0;
  65. color: #fff;
  66. display: flex;
  67. font-size: 13px;
  68. min-height: 24px;
  69. justify-content: center;
  70. position: absolute;
  71. text-align: center;
  72. width: 100%;
  73. z-index: 1;
  74. &--warning {
  75. background: rgba(241, 173, 51, 1);
  76. }
  77. &--ok {
  78. background: rgba(49, 183, 106, 1);
  79. }
  80. }
  81. &-icon {
  82. background-position: center;
  83. background-repeat: no-repeat;
  84. display: inline-block;
  85. height: 16px;
  86. margin-right: 8px;
  87. width: 16px;
  88. }
  89. &-error-desc {
  90. margin-right: 4px;
  91. color: #fff;
  92. font-weight: bold;
  93. }
  94. .settings-button-container {
  95. width: 49px;
  96. margin: 0 8px;
  97. }
  98. &-dropdown-btns {
  99. width: 320px;
  100. padding: 8px 0;
  101. @include adjust-for-max-width(320px, 8px);
  102. }
  103. &-dropdown-btn {
  104. align-items: center;
  105. color: #1C2025;
  106. cursor: pointer;
  107. display: flex;
  108. height: 40px;
  109. font-size: 15px;
  110. line-height: 24px;
  111. padding: 0 16px;
  112. &:hover {
  113. background-color: #DAEBFA;
  114. }
  115. }
  116. &-dropdown-icon {
  117. display: inline-block;
  118. margin-right: 16px;
  119. & > svg {
  120. fill: #1C2025;
  121. }
  122. }
  123. &-dropdown-container {
  124. margin-top: 16px;
  125. & > div:nth-child(2) {
  126. background: #fff;
  127. padding: 0;
  128. }
  129. }
  130. }