Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Custom icon buttons
3
***/
4
 
5
.icon-btn {
6
    height: 60px;
7
    min-width: 80px;
8
    margin: 5px 5px 0 0;
9
    border: 1px solid #ddd;
10
    padding: 12px 0px 0px 0px;
11
    background-color: #fafafa;
12
    background-image: none;
13
    filter:none;
14
    -webkit-box-shadow: none;
15
    -moz-box-shadow: none;
16
    box-shadow: none;
17
    display:inline-block;
18
    color: #646464;
19
    text-shadow: none;
20
    text-align: center;
21
    cursor: pointer;
22
    position: relative;
23
    -webkit-transition: all 0.3s ease;
24
    -moz-transition: all 0.3s ease;
25
    -ms-transition: all 0.3s ease;
26
    -o-transition: all 0.3s ease;
27
    transition: all 0.3s ease;
28
 
29
    &:hover {
30
        text-decoration: none;
31
        border-color: #999;
32
        color: #444;
33
        text-shadow: 0 1px 0px rgba(255, 255, 255, 1);
34
        -webkit-transition: all 0.3s ease;
35
        -moz-transition: all 0.3s ease;
36
        -ms-transition: all 0.3s ease;
37
        -o-transition: all 0.3s ease;
38
        transition: all 0.3s ease;
39
        -webkit-box-shadow: none;
40
        -moz-box-shadow: none;
41
        box-shadow: none;
42
 
43
        > .badge {
44
          -webkit-transition: all 0.3s ease;
45
          -moz-transition: all 0.3s ease;
46
          -ms-transition: all 0.3s ease;
47
          -o-transition: all 0.3s ease;
48
          transition: all 0.3s ease;
49
          -webkit-box-shadow: none;
50
               -moz-box-shadow: none;
51
                    box-shadow: none;
52
        }
53
    }
54
 
55
    > div {
56
        margin-top: 5px;
57
        margin-bottom: 20px;
58
        color: #000;
59
        font-size: 12px;
60
        font-weight: 300;
61
    }
62
 
63
    > .badge {
64
        position: absolute;
65
        font-size: 11px;
66
        font-weight: 300;
67
        top: -5px;
68
        right: -5px;
69
        padding: 3px 6px 3px 6px;
70
        color: white;
71
        text-shadow: none;
72
        border-width: 0;
73
        border-style: solid;
74
        -webkit-border-radius: 12px;
75
        -moz-border-radius: 12px;
76
        border-radius: 12px;
77
        -webkit-box-shadow: none;
78
        -moz-box-shadow: none;
79
        box-shadow: none;
80
    }
81
 
82
    > i {
83
        font-size: 18px;
84
    }
85
 
86
    .ie8 &:hover {
87
        filter: none;
88
    }
89
}