123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- .jobs-top {
- position: relative;
- overflow: hidden;
- height: 33px;
- line-height: 33px;
- margin-bottom: 20px;
- &::before {
- content: "";
- width: 100%;
- height: 1px;
- background: #aaa;
- position: absolute;
- left: 5px;
- top: 50%;
- }
- .left {
- position: relative;
- background: #fff;
- float: left;
- font-size: 14px;
- font-weight: 400;
- color: #6a6a6a;
- padding-right: 10px;
- span {
- color: #4aad78;
- margin: 0 3px;
- }
- }
- .add-job {
- position: relative;
- float: right;
- background: #4aad78;
- border-radius: 1px;
- padding: 0 50px;
- color: #fff;
- cursor: pointer;
- }
- }
- add-job-div{
- width: 80%;
- height: 70%;
- }
- .job-type {
- overflow: hidden;
- background: #f7f7f7;
- border: 1px solid #efefef;
- padding: 10px 20px 0;
- line-height: 23px;
- font-size: 14px;
- margin-bottom: 10px;
- dt {
- width: 50px;
- float: left;
- font-weight: 400;
- color: #2e2e2e;
- }
- dd {
- padding-left: 50px;
- span {
- display: inline-block;
- height: 23px;
- padding: 0 13px;
- cursor: pointer;
- margin-bottom: 10px;
- &.active {
- background: #4aad78;
- color: #fff;
- border-radius: 2px;
- }
- }
- }
- }
- .job-list {
- .job-item {
- background: #fbfbfb;
- border: 1px solid #efefef;
- padding: 16px 24px 20px 15px;
- overflow: hidden;
- border-left: rgb(0,179,138) 5px solid;
- margin-bottom: 25px;
- .left {
- float: left;
- .name {
- font-size: 16px;
- font-weight: 400;
- color: #4aad78;
- line-height: 22px;
- margin-bottom: 7px;
- }
- .details {
- font-size: 14px;
- font-weight: 400;
- color: #979797;
- line-height: 20px;
- span {
- color: #ff5900;
- margin-right: 10px;
- }
- }
- }
- .right {
- float: right;
- text-align: right;
- .time {
- font-size: 12px;
- font-weight: 400;
- color: #9d9d9d;
- line-height: 17px;
- margin-bottom: 10px;
- }
- .tool {
- span {
- display: inline-block;
- margin-left: 20px;
- font-size: 12px;
- font-weight: 400;
- line-height: 17px;
- cursor: pointer;
- }
- }
- }
- }
- .job-item.offline{
- border-left-color: #cdcdcd;
- .right{
- .edit{
- color: #666;
- }
- }
- }
- }
|