dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

Feb 25th, 2019
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 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. @media (max-width: 1024px) {
  18. margin-top: -450px;
  19. }
  20. @media (max-width: 768px) {
  21. margin-top: -350px;
  22. }
  23. @media (max-width: 375px) {
  24. margin-top: -300px;
  25. }
  26. }
  27.  
  28. .categoriesInnerContainer {
  29. padding: 40px;
  30. font-weight: bold;
  31. background-color: #fff;
  32. border-radius: 3px;
  33. margin-top: 150px;
  34. }
  35.  
  36. .tags {
  37. display: flex;
  38. flex-direction: row;
  39. flex-wrap: wrap;
  40. margin-left: -20px;
  41. }
  42.  
  43. .tag {
  44. @include base-font();
  45.  
  46. background-color: #9143fd;
  47. padding: 16px 32px;
  48. color: white;
  49. text-align: center;
  50. border: none;
  51. font-weight: bold;
  52. font-size: 1.125rem;
  53. margin-top: 20px;
  54. margin-left: 20px;
  55.  
  56. &:hover {
  57. background-color: #c536a4;
  58. cursor: pointer;
  59. }
  60. }
  61.  
  62. .filtersForm {
  63. display: flex;
  64. flex-direction: row;
  65. justify-content: space-between;
  66. flex-wrap: wrap;
  67. margin-top: 56px;
  68. padding-top: 48px;
  69. @media (max-width: 375px) {
  70. margin-top: -10px;
  71. }
  72. }
  73.  
  74. .level {
  75. display: flex;
  76. flex-direction: row;
  77. justify-content: space-around;
  78. height: 56px;
  79. width: 240px;
  80. margin-right: 16px;
  81. box-sizing: border-box;
  82. border-radius: 3px;
  83. background-color: #fff;
  84. border: 2px solid #b7bac7;
  85. color: #b7bac7;
  86. padding-left: 30px;
  87. font-size: 18px;
  88. img {
  89. padding-right: 20px;
  90. padding-top: 6px;
  91. }
  92. @media (max-width: 1024px) {
  93. width: 45%;
  94. padding-left: 20px;
  95. }
  96. @media (max-width: 768px) {
  97. width: 100%;
  98. }
  99. }
  100.  
  101. .clear {
  102. margin-left: 400px;
  103. height: 56px;
  104. width: 160px;
  105. background-color: #fff;
  106. border: 2px solid #c9353d;
  107. box-sizing: border-box;
  108. border-radius: 3px;
  109. color: #c9353d;
  110. font-size: 1.125rem;
  111. line-height: normal;
  112. transition: all 0.3s;
  113. margin-top: 105px;
  114.  
  115. &:hover {
  116. background-color: #c9353d;
  117. color: #fff;
  118. cursor: pointer;
  119. }
  120.  
  121. @media (max-width: 1024px) {
  122. margin-left: 300px;
  123. }
  124. @media (max-width: 768px) {
  125. margin-left: 100px;
  126. }
  127. @media (max-width: 375px) {
  128. margin-left: 0px;
  129. margin-top: 20px;
  130. }
  131. }
  132.  
  133. .jobsContainer {
  134. display: flex;
  135. justify-content: center;
  136. margin-top: 100px;
  137. }
  138.  
  139. .listContainer {
  140. padding: 24px 32px 24px 32px;
  141. height: auto;
  142. width: 1136px;
  143. background-color: #fff;
  144. z-index: 10px;
  145. }
  146.  
  147. .oneJob {
  148. padding: 24px;
  149. background-color: #f0f2f9;
  150. height: auto;
  151. width: 100%;
  152. z-index: 20;
  153. margin-top: 20px;
  154. border-radius: 3px;
  155. text-decoration: none;
  156. color: black;
  157. display: flex;
  158. align-items: center;
  159. @media (max-width: 375px) {
  160. display: flex;
  161. flex-direction: column;
  162. }
  163. }
  164.  
  165. .title {
  166. font-size: 30px;
  167. text-decoration: none;
  168. @media (max-width: 375px) {
  169. text-align: center;
  170. margin-top: 10px;
  171. }
  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. .search {
  185. height: 56px;
  186. width: 240px;
  187. border-radius: 3px;
  188. background-color: #fff;
  189. border: 2px solid #b7bac7;
  190. color: #b7bac7;
  191. padding-left: 30px;
  192. font-size: 18px;
  193.  
  194. &::placeholder {
  195. color: #bdc0cb;
  196. }
  197. @media (max-width: 1024px) {
  198. width: 45%;
  199. padding-left: 10px;
  200. }
  201. @media (max-width: 768px) {
  202. width: 100%;
  203. padding-left: 20px;
  204. }
  205. @media (max-width: 375px) {
  206. margin-top: 20px;
  207. padding-left: 22px;
  208. }
  209. }
  210.  
  211. .total {
  212. display: flex;
  213. justify-content: space-between;
  214. align-items: center;
  215. span {
  216. display: inline-block;
  217. background-color: #161616;
  218. color: #fff;
  219. padding: 0.5rem 1rem;
  220. border-radius: 3px;
  221. font-weight: bold;
  222. text-align: right;
  223. }
  224. }
  225.  
  226. .companyLogo {
  227. margin-right: 24px;
  228. img {
  229. width: 64px;
  230. height: 64px;
  231. object-fit: cover;
  232. }
  233. @media (max-width: 375px) {
  234. margin-right: 0;
  235. }
  236. }
  237.  
  238. .jobLink {
  239. text-decoration: none;
  240. }
  241.  
  242. .filters {
  243. display: flex;
  244. flex-direction: row;
  245. margin-top: -50px;
  246. @media (max-width: 375px) {
  247. display: unset;
  248. }
  249. }
  250.  
  251. .filtersContainer {
  252. display: flex;
  253. @media (max-width: 375px) {
  254. display: unset;
  255. }
  256. }
  257.  
  258. hr {
  259. margin-top: 70px;
  260. color: #b7bac7;
  261. }
Add Comment
Please, Sign In to add comment