dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

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