dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

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