jobs.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .jobs-top {
  2. position: relative;
  3. overflow: hidden;
  4. height: 33px;
  5. line-height: 33px;
  6. margin-bottom: 20px;
  7. &::before {
  8. content: "";
  9. width: 100%;
  10. height: 1px;
  11. background: #aaa;
  12. position: absolute;
  13. left: 5px;
  14. top: 50%;
  15. }
  16. .left {
  17. position: relative;
  18. background: #fff;
  19. float: left;
  20. font-size: 14px;
  21. font-weight: 400;
  22. color: #6a6a6a;
  23. padding-right: 10px;
  24. span {
  25. color: #4aad78;
  26. margin: 0 3px;
  27. }
  28. }
  29. .add-job {
  30. position: relative;
  31. float: right;
  32. background: #4aad78;
  33. border-radius: 1px;
  34. padding: 0 50px;
  35. color: #fff;
  36. cursor: pointer;
  37. }
  38. }
  39. add-job-div{
  40. width: 80%;
  41. height: 70%;
  42. }
  43. .job-type {
  44. overflow: hidden;
  45. background: #f7f7f7;
  46. border: 1px solid #efefef;
  47. padding: 10px 20px 0;
  48. line-height: 23px;
  49. font-size: 14px;
  50. margin-bottom: 10px;
  51. dt {
  52. width: 50px;
  53. float: left;
  54. font-weight: 400;
  55. color: #2e2e2e;
  56. }
  57. dd {
  58. padding-left: 50px;
  59. span {
  60. display: inline-block;
  61. height: 23px;
  62. padding: 0 13px;
  63. cursor: pointer;
  64. margin-bottom: 10px;
  65. &.active {
  66. background: #4aad78;
  67. color: #fff;
  68. border-radius: 2px;
  69. }
  70. }
  71. }
  72. }
  73. .job-list {
  74. .job-item {
  75. background: #fbfbfb;
  76. border: 1px solid #efefef;
  77. padding: 16px 24px 20px 15px;
  78. overflow: hidden;
  79. border-left: rgb(0,179,138) 5px solid;
  80. margin-bottom: 25px;
  81. .left {
  82. float: left;
  83. .name {
  84. font-size: 16px;
  85. font-weight: 400;
  86. color: #4aad78;
  87. line-height: 22px;
  88. margin-bottom: 7px;
  89. }
  90. .details {
  91. font-size: 14px;
  92. font-weight: 400;
  93. color: #979797;
  94. line-height: 20px;
  95. span {
  96. color: #ff5900;
  97. margin-right: 10px;
  98. }
  99. }
  100. }
  101. .right {
  102. float: right;
  103. text-align: right;
  104. .time {
  105. font-size: 12px;
  106. font-weight: 400;
  107. color: #9d9d9d;
  108. line-height: 17px;
  109. margin-bottom: 10px;
  110. }
  111. .tool {
  112. span {
  113. display: inline-block;
  114. margin-left: 20px;
  115. font-size: 12px;
  116. font-weight: 400;
  117. line-height: 17px;
  118. cursor: pointer;
  119. }
  120. }
  121. }
  122. }
  123. .job-item.offline{
  124. border-left-color: #cdcdcd;
  125. .right{
  126. .edit{
  127. color: #666;
  128. }
  129. }
  130. }
  131. }