Project

General

Profile

1
//
2
// Component: Description list
3
//
4
// ========================================================================
5

    
6

    
7
// Variables
8
// ========================================================================
9

    
10
@description-list-term-font-size:                      @global-small-font-size;
11
@description-list-term-font-weight:                    normal;
12
@description-list-term-text-transform:                 uppercase;
13

    
14

    
15
// Component
16
// ========================================================================
17

    
18
.hook-description-list-term() {
19
    font-size: @description-list-term-font-size;
20
    font-weight: @description-list-term-font-weight;
21
    text-transform: @description-list-term-text-transform;
22
}
23

    
24
.hook-description-list-description() {}
25

    
26

    
27
// Style modifier
28
// ========================================================================
29

    
30
.hook-description-list-divider-term() {}
31

    
32

    
33
// Miscellaneous
34
// ========================================================================
35

    
36
.hook-description-list-misc() {}
(17-17/59)