Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_prejoin.scss 2.4KB

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