Project

General

Profile

1
//
2
// Component: Text
3
//
4
// ========================================================================
5

    
6

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

    
10
//
11
// New
12
//
13

    
14
@text-meta-link-color:                          @text-meta-color;
15
@text-meta-link-hover-color:                    @global-color;
16

    
17

    
18
// Style modifiers
19
// ========================================================================
20

    
21
.hook-text-lead() {}
22

    
23
.hook-text-meta() {
24

    
25
    a { color: @text-meta-link-color; }
26

    
27
    a:hover {
28
        color: @text-meta-link-hover-color;
29
        text-decoration: none;
30
    }
31

    
32
}
33

    
34

    
35
// Size modifiers
36
// ========================================================================
37

    
38
.hook-text-small() {}
39

    
40
.hook-text-large() {}
41

    
42

    
43
// Background modifier
44
// ========================================================================
45

    
46
.hook-text-background() {}
47

    
48

    
49
// Miscellaneous
50
// ========================================================================
51

    
52
.hook-text-misc() {}
53

    
54

    
55
// Inverse
56
// ========================================================================
57

    
58
.hook-inverse-text-lead() {}
59
.hook-inverse-text-meta() {}
(52-52/59)