common.less 1018 Bytes
Newer Older
张锡奇's avatar
张锡奇 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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
.iCard{
    font-size:12px;
    overflow:hidden;
    background:#fff;
    border-radius:5px;
    margin:8px 8px 0;
    box-shadow:0 1px 3px #bababa;
    width:auto;
    .cardHeader{
        display:flex;
        align-items:center;
        padding:6px 11px 6px 16px;
        border-bottom: 2px solid #EDF4FF;
        height:25px;
        .content{
            flex:1;
            text-align: left;
            font-size:14px;
            color:#000;
        }
        .extra{
            text-align:right;
            padding:5px 10px;
            box-sizing:border-box;
            background:#5cadff;
            color:white;
            border-radius:8px;
            font-size:12px;
            height:25px;
            display:flex;
            align-items:center;
        }
        
    }
    .cardBody,.cardFooter{
        margin-top:13px;
        color:#80848f;
        padding:0 16px;
        display: flex;
        view{
            flex:1
        }
    }
    .cardFooter{
        margin-bottom:13px;
    }
}