dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

Feb 25th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 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. border-top: 2px solid #dedfe2;
  69. padding-top: 48px;
  70. }
  71.  
  72. .level {
  73. display: flex;
  74. flex-direction: row;
  75. justify-content: space-around;
  76. height: 56px;
  77. width: 240px;
  78. margin-right: 16px;
  79. box-sizing: border-box;
  80. border-radius: 3px;
  81. background-color: #fff;
  82. border: 2px solid #b7bac7;
  83. color: #b7bac7;
  84. padding-left: 30px;
  85. font-size: 18px;
  86. img {
  87. padding-right: 20px;
  88. padding-top: 6px;
  89. }
  90. @media (max-width: 1024px) {
  91. width: 45%;
  92. padding-left: 20px;
  93. }
  94. @media (max-width: 768px) {
  95. width: 100%;
  96. }
  97. }
  98.  
  99. .clear {
  100. margin-left: 350px;
  101. height: 56px;
  102. width: 160px;
  103. background-color: #fff;
  104. border: 2px solid #c9353d;
  105. box-sizing: border-box;
  106. border-radius: 3px;
  107. color: #c9353d;
  108. font-size: 1.125rem;
  109. line-height: normal;
  110. transition: all 0.3s;
  111. margin-top: 105px;
  112.  
  113. &:hover {
  114. background-color: #c9353d;
  115. color: #fff;
  116. cursor: pointer;
  117. }
  118.  
  119. @media (max-width: 1024px) {
  120. margin-left: 300px;
  121. }
  122. @media (max-width: 768px) {
  123. margin-left: 100px;
  124. }
  125. @media (max-width: 375px) {
  126. margin-left: 45px;
  127. margin-top: 40px;
  128. }
  129. }
  130.  
  131. .jobsContainer {
  132. display: flex;
  133. justify-content: center;
  134. margin-top: 100px;
  135. }
  136.  
  137. .listContainer {
  138. padding: 24px 32px 24px 32px;
  139. height: auto;
  140. width: 1136px;
  141. background-color: #fff;
  142. z-index: 10px;
  143. }
  144.  
  145. .oneJob {
  146. padding: 24px;
  147. background-color: #f0f2f9;
  148. height: auto;
  149. width: 100%;
  150. z-index: 20;
  151. margin-top: 20px;
  152. border-radius: 3px;
  153. text-decoration: none;
  154. color: black;
  155. display: flex;
  156. align-items: center;
  157. }
  158.  
  159. .title {
  160. font-size: 30px;
  161. text-decoration: none;
  162. }
  163.  
  164. .location {
  165. margin-top: 10px;
  166. text-decoration: none;
  167. }
  168.  
  169. .description {
  170. margin-top: 10px;
  171. text-decoration: none;
  172. }
  173.  
  174. .search {
  175. height: 56px;
  176. width: 240px;
  177. border-radius: 3px;
  178. background-color: #fff;
  179. border: 2px solid #b7bac7;
  180. color: #b7bac7;
  181. padding-left: 30px;
  182. font-size: 18px;
  183.  
  184. &::placeholder {
  185. color: #bdc0cb;
  186. }
  187. @media (max-width: 1024px) {
  188. width: 45%;
  189. padding-left: 10px;
  190. }
  191. @media (max-width: 768px) {
  192. width: 100%;
  193. padding-left: 20px;
  194. }
  195. @media (max-width: 375px) {
  196. margin-top: 20px;
  197. padding-left: 22px;
  198. }
  199. }
  200.  
  201. .total {
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. span {
  206. display: inline-block;
  207. background-color: #161616;
  208. color: #fff;
  209. padding: 0.5rem 1rem;
  210. border-radius: 3px;
  211. font-weight: bold;
  212. text-align: right;
  213. }
  214. }
  215.  
  216. .companyLogo {
  217. margin-right: 24px;
  218. img {
  219. width: 64px;
  220. height: 64px;
  221. object-fit: cover;
  222. }
  223. }
  224.  
  225. .jobInfo {
  226. }
  227.  
  228. .jobLink {
  229. text-decoration: none;
  230. }
  231.  
  232. .filters {
  233. display: flex;
  234. flex-direction: row;
  235. @media (max-width: 375px) {
  236. display: unset;
  237. }
  238. }
  239.  
  240. .filtersContainer {
  241. display: flex;
  242. @media (max-width: 375px) {
  243. display: unset;
  244. }
  245. }
Advertisement
Add Comment
Please, Sign In to add comment