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