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.

_candidatesPage.scss 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .main-candidates-container {
  2. display: flex;
  3. flex-direction: column;
  4. margin-bottom: 36px;
  5. }
  6. .top-candidates-container {
  7. display: flex;
  8. justify-content: space-between;
  9. }
  10. .candidate-btn {
  11. margin-left: 20px;
  12. font-family: "Source Sans Pro";
  13. font-style: normal;
  14. font-weight: 400;
  15. font-size: 16px;
  16. color: #226cb0;
  17. text-transform: none;
  18. }
  19. .all-white-btn {
  20. background: linear-gradient(0deg, #e8f7ff, #e8f7ff),
  21. linear-gradient(0deg, #226cb0, #226cb0);
  22. }
  23. .candidate-btn-mobile {
  24. @extend .candidate-btn;
  25. // overrride style from candidate-btn class
  26. margin-left: 10px;
  27. }
  28. .invite-btn {
  29. padding: 18px 72px;
  30. gap: 10px;
  31. height: 51px;
  32. width: 190px;
  33. border-radius: 9px;
  34. display: flex;
  35. align-self: flex-end;
  36. margin-left: 60px;
  37. margin-bottom: 36px;
  38. }
  39. .candidates-options-container {
  40. display: flex;
  41. }
  42. .candidates-header {
  43. font-family: "Source Sans Pro";
  44. font-style: normal;
  45. font-weight: 600;
  46. font-size: 36px;
  47. line-height: 32px;
  48. letter-spacing: 0.02em;
  49. color: #272727;
  50. }
  51. .candidates-table {
  52. margin-top: 30px;
  53. width: 100%;
  54. display: flex;
  55. flex-direction: column;
  56. min-height: 70vh;
  57. align-items: space-between;
  58. }
  59. .candidates-image {
  60. height: 14px;
  61. width: 16px;
  62. margin-left: 10px;
  63. }
  64. .candidate-image-mobile {
  65. position: "relative";
  66. top: -0.25;
  67. }
  68. .invite-btn-color {
  69. color: #fff;
  70. background-color: #226cb0;
  71. }
  72. .ads-candidates-container {
  73. max-height: 837px;
  74. overflow-y: auto;
  75. overflow-x: hidden;
  76. }
  77. .ads-candidates-slider {
  78. display: flex;
  79. }
  80. .ads-candidates-top-container {
  81. display: flex;
  82. align-items: center;
  83. }
  84. .ads-candidates-title {
  85. font-family: Source Sans Pro;
  86. font-size: 24px;
  87. font-weight: 600;
  88. letter-spacing: 0.02em;
  89. margin-left: 18px;
  90. }
  91. .ads-candidates-numberOfApplicants {
  92. font-family: Source Sans Pro;
  93. font-size: 16px;
  94. font-weight: 600;
  95. letter-spacing: 0em;
  96. color: #226cb0;
  97. margin-left: 5px;
  98. }
  99. .ads-candidates-image {
  100. width: 49px;
  101. height: 39px;
  102. }
  103. .top-cnd {
  104. margin-top: 39px;
  105. }
  106. .top-cnd > div:not(:first-child) {
  107. margin-top: 79px;
  108. }
  109. .filter-date-container {
  110. display: flex;
  111. flex-direction: column;
  112. margin-top: 10px;
  113. }
  114. .filter-date-container input {
  115. border: 1px solid gray;
  116. border-radius: 4px;
  117. height: 40px;
  118. padding-left: 12px;
  119. font-family: Source Sans Pro;
  120. font-size: 16px;
  121. font-style: italic;
  122. font-weight: 400;
  123. line-height: 20px;
  124. letter-spacing: 0em;
  125. text-align: left;
  126. color: #9d9d9d;
  127. margin-top: 5px;
  128. }
  129. .left-move-candidateAd {
  130. margin-left: -0.75rem !important;
  131. }
  132. @media only screen and (max-width: 600px) {
  133. .ads-candidates-title {
  134. font-size: 18px;
  135. margin-left: 10px;
  136. }
  137. .ads-candidates-image {
  138. width: 40px;
  139. height: 30px;
  140. }
  141. .ads-candidates-numberOfApplicants {
  142. font-size: 14px;
  143. }
  144. }