dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

Feb 27th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. @import 'src/styles/utility';
  2.  
  3. .root {
  4. margin-left: auto;
  5. margin-right: auto;
  6. max-width: $container;
  7. width: auto;
  8. @media (max-width: $xl) {
  9. padding-left: 20px;
  10. padding-right: 20px;
  11. }
  12. @media (max-width: $sm) {
  13. padding-left: 20px;
  14. padding-right: 20px;
  15. }
  16. }
  17.  
  18. .cover {
  19. background-image: url('src/img/duotone.png');
  20. background-size: cover;
  21. background-position: center center;
  22. height: 30vh;
  23. background-repeat: no-repeat;
  24. z-index: -100;
  25. }
  26.  
  27. .inner {
  28. margin-top: -300px;
  29. @media (max-width: $xl) {
  30. margin-top: -450px;
  31. }
  32. @media (max-width: $md) {
  33. margin-top: -350px;
  34. }
  35. @media (max-width: $sm) {
  36. margin-top: -300px;
  37. }
  38. }
  39.  
  40. .categoriesInnerContainer {
  41. padding: 40px;
  42. font-weight: bold;
  43. background-color: #fff;
  44. border-radius: 3px;
  45. margin-top: 150px;
  46. }
  47.  
  48. .tags {
  49. display: flex;
  50. flex-direction: row;
  51. flex-wrap: wrap;
  52. margin-left: -20px;
  53. }
  54.  
  55. .tag {
  56. @include base-font();
  57.  
  58. background-color: #9143fd;
  59. padding: 16px 17px;
  60. color: white;
  61. text-align: center;
  62. border: none;
  63. font-weight: bold;
  64. font-size: 1.125rem;
  65. margin-top: 20px;
  66. margin-left: 20px;
  67.  
  68. &:hover {
  69. background-color: #c536a4;
  70. cursor: pointer;
  71. }
  72. @media (max-width: $sm) {
  73. font-size: 1rem;
  74. }
  75. }
  76.  
  77. .filtersForm {
  78. display: flex;
  79. flex-direction: row;
  80. justify-content: space-between;
  81. flex-wrap: wrap;
  82. @media (max-width: $sm) {
  83. margin-top: -10px;
  84. }
  85. }
  86.  
  87. .level {
  88. display: flex;
  89. flex-direction: row;
  90. justify-content: space-around;
  91. height: 56px;
  92. width: 240px;
  93. margin-right: 16px;
  94. box-sizing: border-box;
  95. border-radius: 3px;
  96. background-color: #fff;
  97. border: 2px solid #b7bac7;
  98. color: #b7bac7;
  99. padding-left: 14px;
  100. font-size: 1.125rem;
  101. img {
  102. padding-right: 20px;
  103. padding-top: 6px;
  104. }
  105. @media (max-width: $xl) {
  106. width: 85%;
  107. padding-left: 8px;
  108. }
  109. @media (max-width: $md) {
  110. width: 80%;
  111. }
  112. @media (max-width: $sm) {
  113. width: 100%;
  114. }
  115. }
  116.  
  117. .clear {
  118. padding: 16px 32px;
  119. background-color: #fff;
  120. border: 2px solid #c9353d;
  121. box-sizing: border-box;
  122. border-radius: 3px;
  123. color: #c9353d;
  124. font-size: 1.125rem;
  125. line-height: normal;
  126. transition: all 0.3s;
  127. white-space: nowrap;
  128.  
  129. &:hover {
  130. background-color: #c9353d;
  131. color: #fff;
  132. cursor: pointer;
  133. }
  134.  
  135. @media (max-width: $xl) {
  136. margin-left: 300px;
  137. }
  138. @media (max-width: $md) {
  139. margin-left: 15px;
  140. }
  141. @media (max-width: $sm) {
  142. margin-left: 0px;
  143. margin-top: 20px;
  144. }
  145.  
  146. @media (max-width: $sm) {
  147. width: 100%;
  148. }
  149. }
  150.  
  151. .jobsContainer {
  152. display: flex;
  153. justify-content: center;
  154. margin-top: 100px;
  155. max-width: $container;
  156. margin-left: auto;
  157. margin-right: auto;
  158. @media (min-width: $lg) {
  159. margin-left: 20px;
  160. margin-right: 20px;
  161. }
  162. @media (min-width: $container) {
  163. margin-left: auto;
  164. margin-right: auto;
  165. }
  166. }
  167.  
  168. .listContainer {
  169. padding: 24px 32px 24px 32px;
  170. height: auto;
  171. background-color: #fff;
  172. z-index: 10px;
  173. }
  174.  
  175. .oneJob {
  176. padding: 24px;
  177. background-color: #f0f2f9;
  178. height: auto;
  179. width: 100%;
  180. z-index: 20;
  181. margin-top: 20px;
  182. border-radius: 3px;
  183. text-decoration: none;
  184. color: black;
  185. display: flex;
  186. align-items: center;
  187. @media (max-width: $sm) {
  188. display: flex;
  189. flex-direction: column;
  190. }
  191. }
  192.  
  193. .title {
  194. font-size: 1.875rem;
  195. text-decoration: none;
  196. @media (max-width: $sm) {
  197. text-align: center;
  198. margin-top: 10px;
  199. }
  200. }
  201.  
  202. .location {
  203. margin-top: 10px;
  204. text-decoration: none;
  205. }
  206.  
  207. .description {
  208. margin-top: 10px;
  209. text-decoration: none;
  210. }
  211.  
  212. .search {
  213. height: 56px;
  214. width: 240px;
  215. border-radius: 3px;
  216. background-color: #fff;
  217. border: 2px solid #b7bac7;
  218. color: #b7bac7;
  219. padding-left: 14px;
  220. font-size: 1.125rem;
  221. background: url('src/img/search.svg') no-repeat center right;
  222. background-size: 21% 40%;
  223.  
  224. &::placeholder {
  225. color: #bdc0cb;
  226. }
  227. @media (max-width: $xl) {
  228. width: 100%;
  229. padding-left: 10px;
  230. }
  231. @media (max-width: $md) {
  232. width: 100%;
  233. padding-left: 10px;
  234. }
  235. @media (max-width: $sm) {
  236. margin-top: 20px;
  237. padding-left: 10px;
  238. }
  239. }
  240.  
  241. .total {
  242. display: flex;
  243. justify-content: space-between;
  244. align-items: center;
  245. span {
  246. display: inline-block;
  247. background-color: #161616;
  248. color: #fff;
  249. padding: 8px 16px;
  250. border-radius: 3px;
  251. font-weight: bold;
  252. text-align: right;
  253. }
  254. }
  255.  
  256. .companyLogo {
  257. margin-right: 24px;
  258. img {
  259. width: 64px;
  260. height: 64px;
  261. object-fit: cover;
  262. }
  263. @media (max-width: $sm) {
  264. margin-right: 0;
  265. }
  266. }
  267.  
  268. .jobLink {
  269. text-decoration: none;
  270. }
  271.  
  272. .filters {
  273. display: flex;
  274. justify-content: space-between;
  275. margin-top: 56px;
  276. padding-top: 56px;
  277. border-top: 2px solid #b7bac6;
  278. @media (max-width: $sm) {
  279. display: block;
  280. }
  281. }
  282.  
  283. .filtersContainer {
  284. display: flex;
  285. @media (max-width: $sm) {
  286. display: block;
  287. }
  288. }
  289.  
  290. .sectionTitle {
  291. @media (max-width: $sm) {
  292. font-size: 1.5rem;
  293. }
  294. }
Add Comment
Please, Sign In to add comment