forked from drywall/Largo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicons.less
93 lines (90 loc) · 3.59 KB
/
icons.less
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
90
91
92
93
@font-face {
font-family: 'fontello';
src: url("../fonts/fontello/font/fontello.eot");
src: url("../fonts/fontello/font/fontello.eot?#iefix") format('embedded-opentype'), url("../fonts/fontello/font/fontello.woff") format('woff'), url("../fonts/fontello/font/fontello.ttf") format('truetype'), url("../fonts/fontello/font/fontello.svg#fontello") format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
opacity: 1;
}
.icon-gplus:before { content: '\62'; } /* 'b' */
.icon-pinterest:before { content: '\63'; } /* 'c' */
.icon-cc:before { content: '\64'; } /* 'd' */
.icon-flickr:before { content: '\65'; } /* 'e' */
.icon-linkedin:before { content: '\66'; } /* 'f' */
.icon-rss:before { content: '\67'; } /* 'g' */
.icon-twitter:before { content: '\68'; } /* 'h' */
.icon-youtube:before { content: '\69'; } /* 'i' */
.icon-facebook:before { content: '\70'; } /* 'p' */
.icon-github:before { content: '\71'; } /* 'q' */
.icon-itunes:before { content: '\72'; } /* 'r' */
.icon-tumblr:before { content: '\73'; } /* 's' */
.icon-home:before { content: '\50'; } /* 'P' */
.icon-star:before { content: '\43'; } /* 'C' */
.icon-star-empty:before { content: '\44'; } /* 'D' */
.icon-heart-empty:before { content: '\42'; } /* 'B' */
.icon-heart:before { content: '\41'; } /* 'A' */
.icon-ok:before { content: '\45'; } /* 'E' */
.icon-cancel:before { content: '\46'; } /* 'F' */
.icon-plus:before { content: '\47'; } /* 'G' */
.icon-minus:before { content: '\48'; } /* 'H' */
.icon-help:before { content: '\49'; } /* 'I' */
.icon-tag:before { content: '\52'; } /* 'R' */
.icon-tags:before { content: '\53'; } /* 'S' */
.icon-print:before { content: '\55'; } /* 'U' */
.icon-comment:before { content: '\56'; } /* 'V' */
.icon-chat:before { content: '\57'; } /* 'W' */
.icon-play:before { content: '\60'; } /* '`' */
.icon-menu:before { content: '\4c'; } /* 'L' */
.icon-mail:before { content: '\75'; } /* 'u' */
.icon-spinner:before { content: '\61'; } /* 'a' */
.icon-instagram:before { content: '\74'; } /* 't' */
.icon-headphones:before { content: '\59'; } /* 'Y' */
.icon-phone:before { content: '\58'; } /* 'X' */
.icon-download:before { content: '\54'; } /* 'T' */
.icon-search:before { content: '\4d'; } /* 'M' */
.icon-link:before { content: '\51'; } /* 'Q' */
.social-icons {
.icon-rss:hover { color: #f89406 !important; }
.icon-facebook:hover { color: #4454a0 !important; }
.icon-twitter:hover { color: #0094c5 !important; }
.icon-youtube:hover { color: #c42f23 !important; }
.icon-gplus:hover { color: #ed202b !important; }
.icon-flickr:hover { color: #005fdf !important; }
.icon-linkedin:hover { color: #238cc3 !important; }
.icon-tumblr:hover { color: #2b4763 !important; }
}
#header-social {
i {
position:relative;
top: -1px;
padding: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
font-size: 18px;
&:hover {
color: #fff !important;
opacity: 0.9;
}
}
.icon-rss { background-color: #f89406 !important; }
.icon-facebook { background-color: #4454a0 !important; }
.icon-twitter { background-color: #0094c5 !important; }
.icon-youtube { background-color: #c42f23 !important; }
.icon-gplus { background-color: #ed202b !important; }
.icon-flickr { background-color: #005fdf !important; }
.icon-linkedin { background-color: #238cc3 !important; }
.icon-tumblr { background-color: #2b4763 !important; }
}