Statistics
| Branch: | Tag: | Revision:

root / cloudcms / static / cloudcms / less / xtra.less @ f6e90a2b

History | View | Annotate | Download (882 Bytes)

1
// row helper
2
.makeRow { .clearfix(); margin-left: -@gridGutterWidth; }
3

    
4

    
5
#font {
6
  .main(@weight: normal, @size: 14px, @lineHeight: 22px) {
7
    font-family: 'Antic', sans-serif;
8
    font-size: @size;
9
    font-weight: @weight;
10
    line-height: @lineHeight;
11
    letter-spacing: 1px;
12
  }
13
}
14

    
15

    
16
.button {
17
    #font.main();
18
    background-color: @buttonBg;
19
    color: @buttonColor;
20
    border: none;
21
    padding: 0.8em @gridGutterWidth;
22
    font-size: 1em;
23

    
24
    &:hover {
25
        background-color: @linkColor;    
26
    }
27
}
28

    
29
// specific styles for A buttons
30
a.button {
31
    text-align: center !important;
32
    color: #fff !important;
33
    border: none !important;
34
    display: block !important;
35

    
36
    &:hover {
37
        color: #fff !important;    
38
    }
39
}
40

    
41

    
42
.transit(@type:color, @time:.15s, @easing:linear) {
43
    -webkit-transition: @type @time @easing;
44
    transition: @type @time @easing;
45
}
46