WebApp【公共组件库】@前端(For Git Submodule)
‘chensiAb’
6 days ago 4154c2779a6a033f57dde2743dc1c48e60d6def3
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
/**
 * CNumerical - 数值显示
 * @author Tevin
 */
 
@import "../../common/sassMixin";
 
.c-numerical {
    text-align: center;
    .at-col {
        padding: 14px 0;
        &.on-clickable {
            &:active {
                background-color: #f2f2f2;
            }
            .c-numerical-more {
                display: inline;
            }
        }
    }
    .c-numerical-value {
        font-size: 40px;
        line-height: 52px;
        .c-numerical-decimal {
            &.small {
                font-size: 32px;
            }
        }
        .c-numerical-more {
            display: none;
            margin-left: 2px;
            font-size: 36px;
        }
    }
    .c-numerical-title {
        font-size: 30px;
        color: #666;
    }
}