my-courses.scss 3.67 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13
#study {
    .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;
14
        }
zhanghaozhe committed
15 16 17

        .contact {
            font-size: 13px;
18
            color: $active;
zhanghaozhe committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
            flex: 0 1 auto;
            width: 100%;
        }

        .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;
            }

            &-text {
                color: $active;
                font-size: 12px;
                line-height: 15px;
            }
53 54
        }

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

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

zhanghaozhe committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79
        .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
80
    }
zhanghaozhe committed
81

zhanghaozhe committed
82 83
    .add-course {
        padding: 10px 12px;
zhanghaozhe committed
84

zhanghaozhe committed
85 86 87
        button.add {
            width: 150px;
            height: 108px;
zhanghaozhe committed
88

zhanghaozhe committed
89 90 91 92
            font-size: 15px;
            font-family: HiraginoSansGB-W3;
            font-weight: normal;
            color: $active;
zhanghaozhe committed
93 94


zhanghaozhe committed
95 96 97
            border: 1px dashed $active;
            background: transparent;
        }
zhanghaozhe committed
98
    }
zhanghaozhe committed
99 100 101 102 103 104 105 106 107

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

zhanghaozhe committed
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    .empty {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 140px;

        .iconfish {
            width: 20px;
            height: 20px;
            color: #1a4263;
        }

        .empty-prompt {
            margin-bottom: 30px;
            font-size: $font_12;
            color: $color_666;
        }

        .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;
        }
zhanghaozhe committed
141
    }
zhanghaozhe committed
142

zhanghaozhe committed
143 144 145 146 147 148 149 150 151
    .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);
zhanghaozhe committed
152
    }
xuzhenghua committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166
    .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;
    }
zhanghaozhe committed
167
}