Advertisement
dfghgfhplkjbv

src/components/SingleJob/SingleJob.module.scss

Feb 28th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. @import 'src/styles/utility';
  2.  
  3. .root {
  4. @include container;
  5. align-items: center;
  6. }
  7.  
  8. .inner {
  9. margin-top: 40px;
  10. display: flex;
  11.  
  12. @media (max-width: $lg) {
  13. flex-direction: column;
  14. }
  15. }
  16.  
  17. .content {
  18. margin-right: 40px;
  19.  
  20. @media (max-width: 1024px) {
  21. margin-right: 20px;
  22. }
  23.  
  24. @media (max-width: $lg) {
  25. margin-right: 0;
  26. }
  27. }
  28.  
  29. .ad {
  30. flex-basis: 30%;
  31. max-width: 100%;
  32. width: 390px;
  33.  
  34. img {
  35. display: block;
  36. top: 0;
  37. height: auto;
  38. max-width: 100%;
  39. }
  40.  
  41. @media (max-width: $lg) {
  42. flex-basis: 100%;
  43. width: 100%;
  44. }
  45. }
  46.  
  47. .respond {
  48. background-color: #00dc85;
  49. padding: 0;
  50. height: 60px;
  51. color: #fff;
  52. font-size: 1.125rem;
  53. font-weight: bold;
  54. margin: 0 auto;
  55. cursor: pointer;
  56. margin-bottom: 20px;
  57. top: 16px;
  58. text-align: center;
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. text-decoration: none;
  63. }
  64.  
  65. .sticky {
  66. position: sticky;
  67. top: 16px;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement