Advertisement
dfghgfhplkjbv

src/components/AllJobs/AllJobs.module.scss

Feb 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. @import 'src/styles/utility';
  2.  
  3. .root {
  4. @include container;
  5. }
  6.  
  7. .container {
  8. background-image: url('src/img/duotone.png');
  9. background-size: 100%;
  10. height: 50vh;
  11. background-repeat: no-repeat;
  12. z-index: 2;
  13. }
  14.  
  15. .innerContainer {
  16. display: flex;
  17. justify-content: center;
  18.  
  19. margin-top: -300px;
  20. }
  21.  
  22. .categoriesBlock {
  23. background-color: #fff;
  24. width: 1136px;
  25. height: 496px;
  26. z-index: 10;
  27. }
  28.  
  29. .categoriesInnerContainer {
  30. padding: 40px 48px 32px 48px;
  31. height: 206px;
  32. font-weight: bold;
  33. }
  34.  
  35. .tags {
  36. display: flex;
  37. flex-direction: row;
  38. flex-wrap: wrap;
  39. margin-left: -20px;
  40. }
  41.  
  42. .button {
  43. background-color: #9143fd;
  44. height: 3rem;
  45. padding-left: 24px;
  46. padding-right: 24px;
  47. @include base-font();
  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. cursor: pointer;
  56. &:hover {
  57. background-color: #c536a4;
  58. }
  59. }
  60.  
  61. .bottomLine {
  62. display: flex;
  63. flex-direction: row;
  64. flex-wrap: wrap;
  65. width: 1136px;
  66. height: 110px;
  67. margin-top: 74px;
  68. }
  69.  
  70. .level {
  71. display: flex;
  72. flex-direction: row;
  73. justify-content: space-between;
  74. height: 56px;
  75. width: 240px;
  76. margin-right: 16px;
  77. box-sizing: border-box;
  78. border-radius: 3px;
  79. background-color: #fff;
  80. border: 2px solid #b7bac7;
  81. font-family: 'RF Tone';
  82. color: #b7bac7;
  83. padding-left: 30px;
  84. font-size: 18px;
  85. img {
  86. padding-right: 20px;
  87. padding-top: 6px;
  88. }
  89. }
  90.  
  91. .clear {
  92. margin-left: 120px;
  93. height: 56px;
  94. width: 160px;
  95. background-color: #fff;
  96. border: 2px solid #c9353d;
  97. box-sizing: border-box;
  98. border-radius: 3px;
  99. color: #c9353d;
  100. font-family: 'RF Tone';
  101. font-size: 1.125rem;
  102. line-height: normal;
  103. }
  104.  
  105. .jobsContainer {
  106. display: flex;
  107. justify-content: center;
  108. margin-top: 100px;
  109. }
  110.  
  111. .listContainer {
  112. padding: 24px 32px 24px 32px;
  113. height: auto;
  114. width: 1136px;
  115. background-color: #fff;
  116. z-index: 10px;
  117. }
  118.  
  119. .oneJob {
  120. padding: 20px;
  121. background-color: #cddbf2;
  122. height: auto;
  123. width: 100%;
  124. z-index: 20;
  125. margin-top: 20px;
  126. border-radius: 10px;
  127. text-decoration: none;
  128. color: black;
  129. }
  130.  
  131. .title {
  132. font-size: 30px;
  133. text-decoration: none;
  134. }
  135.  
  136. .location {
  137. margin-top: 10px;
  138. text-decoration: none;
  139. }
  140.  
  141. .description {
  142. margin-top: 10px;
  143. text-decoration: none;
  144. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement