my-courses.scss 3 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
#study {
zhanghaozhe committed
3 4 5 6 7 8 9 10 11 12 13 14 15
  .info {
    display: flex;
    flex-wrap: wrap;
    width: 55%;

    .title {
      font-size: 15px;
      font-weight: 400;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: $color_525B65;
zhanghaozhe committed
16
    }
zhanghaozhe committed
17

zhanghaozhe committed
18 19 20 21 22 23
    .contact {
      font-size: 13px;
      color: $active;
      flex: 0 1 auto;
      width: 100%;
    }
zhanghaozhe committed
24

zhanghaozhe committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    .process {
      &-status {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      &-wrapper {
        position: relative;
        width: 147px;
        height: 6px;
        background: #e5e5e5;
        border-radius: 4px;
        margin-right: 14px;
      }

      &-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-color: $active;
        border-radius: 4px;
      }
zhanghaozhe committed
49

zhanghaozhe committed
50 51 52 53 54 55
      &-text {
        color: $active;
        font-size: 12px;
        line-height: 15px;
      }
    }
zhanghaozhe committed
56

zhanghaozhe committed
57 58 59 60 61
    .des {
      color: $color_999;
      font-size: 11px;
      align-self: flex-end;
      line-height: 1;
zhanghaozhe committed
62

zhanghaozhe committed
63 64 65
      .time {
        margin-right: 10px;
      }
zhanghaozhe committed
66
    }
zhanghaozhe committed
67

zhanghaozhe committed
68 69 70 71 72 73 74 75 76 77 78 79 80
    .start-learn {
      display: block;
      box-sizing: border-box;
      align-self: flex-end;
      width: 78px;
      height: 22px;
      padding: 5px 14px;
      -webkit-appearance: none;
      outline: 0;
      border: none;
      background: $bg_active;
      color: $white;
      border-radius: 3px;
zhanghaozhe committed
81
    }
zhanghaozhe committed
82
  }
zhanghaozhe committed
83

zhanghaozhe committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
  .add-course {
    padding: 10px 12px;

    button.add {
      width: 150px;
      height: 108px;

      font-size: 15px;
      font-family: HiraginoSansGB-W3;
      font-weight: normal;
      color: $active;

      border: 1px dashed $active;
      background: transparent;
    }
  }

  .my-course-uid {
    width: 375px;
    height: 30px;
    background: $bg_FFF4CE;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    color: $color_333;
  }

  .empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;

    .iconfish {
      width: 20px;
      height: 20px;
      color: #1a4263;
zhanghaozhe committed
122
    }
zhanghaozhe committed
123

zhanghaozhe committed
124 125 126 127
    .empty-prompt {
      margin-bottom: 30px;
      font-size: $font_12;
      color: $color_666;
zhanghaozhe committed
128
    }
zhanghaozhe committed
129 130 131 132 133 134 135 136 137 138 139 140

    .select-course {
      display: block;
      width: 131px;
      height: 30px;
      border: 1px solid $active;
      border-radius: 15px;
      background: transparent;
      color: $active;
      font-size: $font_16;
      text-align: center;
      line-height: 30px;
xuzhenghua committed
141
    }
zhanghaozhe committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  }

  .status {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 6px;
    border-radius: 11px 0 0 11px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(to bottom, #ff4000, #fd7700);
  }
  .course-expire {
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 92px;
    height: 20px;
    line-height: 21px;
    background-color: #ff3a3a;
    border-radius: 0 10px 10px 0;
    color: #fff;
    font-size: 12px;
  }
}