Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_job-find.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /** =====================
  2. Job-pages css start
  3. ========================== **/
  4. .job-right-header {
  5. .card-header .card-header-right {
  6. top: 7px;
  7. right: 15px;
  8. }
  9. .radio-inline {
  10. display: block;
  11. }
  12. .checkbox-fade {
  13. display: block;
  14. label {
  15. position: absolute;
  16. z-index: 99;
  17. }
  18. div {
  19. position: relative;
  20. padding-left: 40px;
  21. margin-bottom: 20px;
  22. }
  23. }
  24. a {
  25. color: $primary-color;
  26. font-weight: 500;
  27. }
  28. }
  29. .job-details-list {
  30. padding-left: inherit;
  31. list-style-type: square;
  32. margin-bottom: 40px;
  33. li {
  34. margin-bottom: 10px;
  35. }
  36. }
  37. .company-name {
  38. p {
  39. font-weight: 500;
  40. font-size: 20px;
  41. margin-bottom: 5px;
  42. }
  43. }
  44. .job-cards {
  45. .media {
  46. padding-top: 20px;
  47. padding-bottom: 20px;
  48. display: flex;
  49. align-items: center;
  50. position: relative;
  51. border-bottom: 1px solid #ddd;
  52. }
  53. &:last-child {
  54. .media {
  55. border-bottom: none;
  56. padding-bottom: 0;
  57. }
  58. }
  59. img {
  60. width: 60px;
  61. }
  62. .media-right {
  63. position: absolute;
  64. top: 20px;
  65. right: 0;
  66. }
  67. .media-left{
  68. @media only screen and ( max-width:575px ){
  69. padding-right: 0;
  70. }
  71. }
  72. }
  73. .job-badge {
  74. position: absolute;
  75. top: 35px;
  76. right: -15px;
  77. &:after{
  78. content: "";
  79. border: 7px solid transparent;
  80. border-top-color: darken($primary-color, 15%);
  81. position: absolute;
  82. -webkit-transform: rotate(45deg);
  83. transform: rotate(45deg);
  84. top: -7px;
  85. right: 8px;
  86. z-index: 1;
  87. }
  88. .label{
  89. width: 50px;
  90. text-align: center;
  91. padding: 7px;
  92. border-radius: 0;
  93. z-index: 10;
  94. }
  95. @media only screen and ( max-width: 768px ){
  96. display: none;
  97. }
  98. }
  99. .job-lable {
  100. margin-bottom: 20px;
  101. .label {
  102. margin: 5px 10px 5px 0;
  103. position: relative;
  104. z-index: 9;
  105. display: inline-block;
  106. padding: 5px 10px 5px 12px;
  107. }
  108. }
  109. .job-card-desc {
  110. font-weight: 500;
  111. margin-top: 10px;
  112. cursor: pointer;
  113. }
  114. .job-meta-data {
  115. text-transform: capitalize;
  116. font-size: 12px;
  117. margin-bottom: 10px;
  118. i {
  119. margin-right: 5px;
  120. color: $primary-color;
  121. }
  122. }
  123. /**====== Job-pages css end ======**/