Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / static / im / less / xtra.less @ f70310ce

History | View | Annotate | Download (922 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
    .transit(background-color);
20
    color: @buttonColor;
21
    border: none;
22
    padding: 0.8em @gridGutterWidth;
23
    font-size: 1em;
24

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

    
29
    a {
30
        color: @white !important;
31
        text-decoration: none !important;
32
        border: none !important;
33
    }
34
}
35

    
36
a.button {
37
    color: @white !important;
38
    text-decoration: none !important;
39
    border: none !important;
40
}
41

    
42

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