dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

Feb 22nd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. @import 'src/styles/utility';
  2.  
  3. .container {
  4. width: 100%;
  5. background-image: url('src/img/duotone.png');
  6. height: 50vh;
  7. background-repeat: no-repeat;
  8. background-size: 100%;
  9. z-index: 2;
  10. @media (max-width: 1024px) {
  11. @include container();
  12. }
  13. }
  14.  
  15. .innerContainer {
  16. display: flex;
  17. justify-content: center;
  18.  
  19. margin-top: -300px;
  20. }
  21.  
  22. .categoriesBlock {
  23. background-color: #fff;
  24. width: 1136px;
  25. height: 500px;
  26. z-index: 10;
  27.  
  28. @media (max-width: 1024px) {
  29. width: 80%;
  30. margin-top: -300px;
  31. }
  32. @media (max-width: 768px) {
  33. margin-top: -100px;
  34. }
  35. @media (max-width: 375px) {
  36. margin-top: -50px;
  37. height: auto;
  38. }
  39. }
  40.  
  41. .categoriesInnerContainer {
  42. padding: 40px 48px 32px 48px;
  43. height: 206px;
  44. font-weight: bold;
  45. @media (max-width: 375px) {
  46. height: auto;
  47. }
  48. }
  49.  
  50. .tags {
  51. display: flex;
  52. flex-direction: row;
  53. flex-wrap: wrap;
  54. margin-left: -20px;
  55. }
  56.  
  57. .button {
  58. background-color: #9143fd;
  59. height: 3rem;
  60. padding-left: 24px;
  61. padding-right: 24px;
  62. @include base-font();
  63. color: white;
  64. text-align: center;
  65. border: none;
  66. font-weight: bold;
  67. font-size: 1.125rem;
  68. margin-top: 20px;
  69. margin-left: 20px;
  70. cursor: pointer;
  71. &:hover {
  72. background-color: #c536a4;
  73. }
  74. }
  75.  
  76. .bottomLine {
  77. display: flex;
  78. flex-direction: row;
  79. flex-wrap: wrap;
  80. width: 1136px;
  81. height: 110px;
  82. margin-top: 74px;
  83. @media (max-width: 1024px) {
  84. width: auto;
  85. }
  86. @media (max-width: 375px) {
  87. height: auto;
  88. }
  89. }
  90.  
  91. .level {
  92. display: flex;
  93. flex-direction: row;
  94. justify-content: space-between;
  95. height: 56px;
  96. width: 240px;
  97. margin-right: 16px;
  98. box-sizing: border-box;
  99. border-radius: 3px;
  100. background-color: #fff;
  101. border: 2px solid #b7bac7;
  102. font-family: 'RF Tone';
  103. color: #b7bac7;
  104. padding-left: 30px;
  105. font-size: 18px;
  106. img {
  107. padding-right: 20px;
  108. padding-top: 6px;
  109. }
  110. @media (max-width: 1024px) {
  111. width: auto;
  112. margin-right: 5%;
  113. padding-left: 0px;
  114. }
  115. @media (max-width: 768px) {
  116. margin-top: 20px;
  117. }
  118. }
  119.  
  120. .clear {
  121. margin-left: 120px;
  122. height: 56px;
  123. width: 160px;
  124. background-color: #fff;
  125. border: 2px solid #c9353d;
  126. box-sizing: border-box;
  127. border-radius: 3px;
  128. color: #c9353d;
  129. font-family: 'RF Tone';
  130. font-size: 1.125rem;
  131. line-height: normal;
  132. @media (max-width: 1024px) {
  133. margin-left: 0px;
  134. width: auto;
  135. }
  136. @media (max-width: 768px) {
  137. margin-top: 20px;
  138. }
  139. }
  140.  
  141. .jobsContainer {
  142. display: flex;
  143. justify-content: center;
  144. margin-top: 100px;
  145. }
  146.  
  147. .listContainer {
  148. padding: 24px 32px 24px 32px;
  149. height: auto;
  150. width: 1136px;
  151. background-color: #fff;
  152. z-index: 10px;
  153. }
  154.  
  155. .oneJob {
  156. display: flex;
  157. flex-direction: row;
  158. padding: 20px;
  159. background-color: #cddbf2;
  160. height: auto;
  161. width: 100%;
  162. z-index: 20;
  163. margin-top: 20px;
  164. border-radius: 10px;
  165. text-decoration: none;
  166. color: black;
  167. }
  168.  
  169. .title {
  170. font-size: 30px;
  171. text-decoration: none;
  172. }
  173.  
  174. .location {
  175. margin-top: 10px;
  176. text-decoration: none;
  177. }
  178.  
  179. .description {
  180. margin-top: 10px;
  181. text-decoration: none;
  182. }
  183.  
  184. .link {
  185. text-decoration: none;
  186. }
  187.  
  188. .companyLogo {
  189. height: 50px;
  190. width: auto;
  191. }
  192.  
  193. .right {
  194. margin-left: 20px;
  195. }
Advertisement
Add Comment
Please, Sign In to add comment