author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 09 Dec 2015 17:44:17 +0100 | |
changeset 11001 | 37c5c9b3b3bf |
parent 9343 | cf21813d7003 |
permissions | -rw-r--r-- |
9343
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
1 |
/*The included Entypo font have been created by Daniel Bruce (www.entypo.com) as |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
2 |
proposed by fontello (https://github.com/fontello/entypo). |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
3 |
The Entypo pictograms are licensed under CC BY 3.0 and the font under |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
4 |
SIL Open Font License.*/ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
5 |
@font-face { |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
6 |
font-family: 'entypo'; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
7 |
src: url('entypo.eot?8644018'); |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
8 |
src: url('entypo.eot?8644018#iefix') format('embedded-opentype'), |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
9 |
url('entypo.woff?8644018') format('woff'), |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
10 |
url('entypo.ttf?8644018') format('truetype'), |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
11 |
url('entypo.svg?8644018#entypo') format('svg'); |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
12 |
font-weight: normal; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
13 |
font-style: normal; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
14 |
} |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
15 |
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
16 |
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
17 |
/* |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
18 |
@media screen and (-webkit-min-device-pixel-ratio:0) { |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
19 |
@font-face { |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
20 |
font-family: 'entypo'; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
21 |
src: url('../font/entypo.svg?8644018#entypo') format('svg'); |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
22 |
} |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
23 |
} |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
24 |
*/ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
25 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
26 |
[class^="icon-"]:before, |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
27 |
[class*=" icon-"]:before { |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
28 |
font-family: "entypo"; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
29 |
font-style: normal; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
30 |
font-weight: normal; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
31 |
speak: none; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
32 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
33 |
display: inline-block; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
34 |
text-decoration: inherit; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
35 |
width: 1em; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
36 |
margin-right: .1em; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
37 |
text-align: center; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
38 |
/* opacity: .8; */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
39 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
40 |
/* For safety - reset parent styles, that can break glyph codes*/ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
41 |
font-variant: normal; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
42 |
text-transform: none; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
43 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
44 |
/* fix buttons height, for twitter bootstrap */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
45 |
line-height: 1em; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
46 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
47 |
/* Animation center compensation - magrins should be symmetric */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
48 |
/* remove if not needed */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
49 |
margin-left: .1em; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
50 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
51 |
/* you can be more comfortable with increased icons size */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
52 |
font-size: 160%; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
53 |
vertical-align: middle; |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
54 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
55 |
/* Uncomment for 3D effect */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
56 |
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
57 |
} |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
58 |
|
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
59 |
.icon-note:before { content: '\266a'; } /* '♪' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
60 |
.icon-note-beamed:before { content: '\266b'; } /* '♫' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
61 |
.icon-music:before { content: '\1f3b5'; } /* '\1f3b5' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
62 |
.icon-search:before { content: '\1f50d'; } /* '\1f50d' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
63 |
.icon-flashlight:before { content: '\1f526'; } /* '\1f526' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
64 |
.icon-mail:before { content: '\2709'; } /* '✉' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
65 |
.icon-heart:before { content: '\2665'; } /* '♥' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
66 |
.icon-heart-empty:before { content: '\2661'; } /* '♡' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
67 |
.icon-star:before { content: '\2605'; } /* '★' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
68 |
.icon-star-empty:before { content: '\2606'; } /* '☆' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
69 |
.icon-user:before { content: '\1f464'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
70 |
.icon-users:before { content: '\1f465'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
71 |
.icon-user-add:before { content: '\e700'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
72 |
.icon-video:before { content: '\1f3ac'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
73 |
.icon-picture:before { content: '\1f304'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
74 |
.icon-camera:before { content: '\1f4f7'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
75 |
.icon-layout:before { content: '\268f'; } /* '⚏' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
76 |
.icon-menu:before { content: '\2630'; } /* '☰' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
77 |
.icon-check:before { content: '\2713'; } /* '✓' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
78 |
.icon-cancel:before { content: '\2715'; } /* '✕' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
79 |
.icon-cancel-circled:before { content: '\2716'; } /* '✖' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
80 |
.icon-cancel-squared:before { content: '\274e'; } /* '❎' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
81 |
.icon-plus:before { content: '\2b'; } /* '+' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
82 |
.icon-plus-circled:before { content: '\2795'; } /* '➕' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
83 |
.icon-plus-squared:before { content: '\229e'; } /* '⊞' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
84 |
.icon-minus:before { content: '\2d'; } /* '-' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
85 |
.icon-minus-circled:before { content: '\2796'; } /* '➖' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
86 |
.icon-minus-squared:before { content: '\229f'; } /* '⊟' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
87 |
.icon-help:before { content: '\2753'; } /* '❓' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
88 |
.icon-help-circled:before { content: '\e704'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
89 |
.icon-info:before { content: '\2139'; } /* 'ℹ' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
90 |
.icon-info-circled:before { content: '\e705'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
91 |
.icon-back:before { content: '\1f519'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
92 |
.icon-home:before { content: '\2302'; } /* '⌂' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
93 |
.icon-link:before { content: '\1f517'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
94 |
.icon-attach:before { content: '\1f4ce'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
95 |
.icon-lock:before { content: '\1f512'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
96 |
.icon-lock-open:before { content: '\1f513'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
97 |
.icon-eye:before { content: '\e70a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
98 |
.icon-tag:before { content: '\e70c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
99 |
.icon-bookmark:before { content: '\1f516'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
100 |
.icon-bookmarks:before { content: '\1f4d1'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
101 |
.icon-flag:before { content: '\2691'; } /* '⚑' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
102 |
.icon-thumbs-up:before { content: '\1f44d'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
103 |
.icon-thumbs-down:before { content: '\1f44e'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
104 |
.icon-download:before { content: '\1f4e5'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
105 |
.icon-upload:before { content: '\1f4e4'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
106 |
.icon-upload-cloud:before { content: '\e711'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
107 |
.icon-reply:before { content: '\e712'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
108 |
.icon-reply-all:before { content: '\e713'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
109 |
.icon-forward:before { content: '\27a6'; } /* '➦' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
110 |
.icon-quote:before { content: '\275e'; } /* '❞' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
111 |
.icon-code:before { content: '\e714'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
112 |
.icon-export:before { content: '\e715'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
113 |
.icon-pencil:before { content: '\270e'; } /* '✎' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
114 |
.icon-feather:before { content: '\2712'; } /* '✒' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
115 |
.icon-print:before { content: '\e716'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
116 |
.icon-retweet:before { content: '\e717'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
117 |
.icon-keyboard:before { content: '\2328'; } /* '⌨' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
118 |
.icon-comment:before { content: '\e718'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
119 |
.icon-chat:before { content: '\e720'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
120 |
.icon-bell:before { content: '\1f514'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
121 |
.icon-attention:before { content: '\26a0'; } /* '⚠' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
122 |
.icon-alert:before { content: '\1f4a5'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
123 |
.icon-vcard:before { content: '\e722'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
124 |
.icon-address:before { content: '\e723'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
125 |
.icon-location:before { content: '\e724'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
126 |
.icon-map:before { content: '\e727'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
127 |
.icon-direction:before { content: '\27a2'; } /* '➢' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
128 |
.icon-compass:before { content: '\e728'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
129 |
.icon-cup:before { content: '\2615'; } /* '☕' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
130 |
.icon-trash:before { content: '\e729'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
131 |
.icon-doc:before { content: '\e730'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
132 |
.icon-docs:before { content: '\e736'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
133 |
.icon-doc-landscape:before { content: '\e737'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
134 |
.icon-doc-text:before { content: '\1f4c4'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
135 |
.icon-doc-text-inv:before { content: '\e731'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
136 |
.icon-newspaper:before { content: '\1f4f0'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
137 |
.icon-book-open:before { content: '\1f4d6'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
138 |
.icon-book:before { content: '\1f4d5'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
139 |
.icon-folder:before { content: '\1f4c1'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
140 |
.icon-archive:before { content: '\e738'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
141 |
.icon-box:before { content: '\1f4e6'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
142 |
.icon-rss:before { content: '\e73a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
143 |
.icon-phone:before { content: '\1f4de'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
144 |
.icon-cog:before { content: '\2699'; } /* '⚙' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
145 |
.icon-tools:before { content: '\2692'; } /* '⚒' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
146 |
.icon-share:before { content: '\e73c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
147 |
.icon-shareable:before { content: '\e73e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
148 |
.icon-basket:before { content: '\e73d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
149 |
.icon-bag:before { content: '\1f45c'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
150 |
.icon-calendar:before { content: '\1f4c5'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
151 |
.icon-login:before { content: '\e740'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
152 |
.icon-logout:before { content: '\e741'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
153 |
.icon-mic:before { content: '\1f3a4'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
154 |
.icon-mute:before { content: '\1f507'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
155 |
.icon-sound:before { content: '\1f50a'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
156 |
.icon-volume:before { content: '\e742'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
157 |
.icon-clock:before { content: '\1f554'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
158 |
.icon-hourglass:before { content: '\23f3'; } /* '⏳' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
159 |
.icon-lamp:before { content: '\1f4a1'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
160 |
.icon-light-down:before { content: '\1f505'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
161 |
.icon-light-up:before { content: '\1f506'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
162 |
.icon-adjust:before { content: '\25d1'; } /* '◑' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
163 |
.icon-block:before { content: '\1f6ab'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
164 |
.icon-resize-full:before { content: '\e744'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
165 |
.icon-resize-small:before { content: '\e746'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
166 |
.icon-popup:before { content: '\e74c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
167 |
.icon-publish:before { content: '\e74d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
168 |
.icon-window:before { content: '\e74e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
169 |
.icon-arrow-combo:before { content: '\e74f'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
170 |
.icon-down-circled:before { content: '\e758'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
171 |
.icon-left-circled:before { content: '\e759'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
172 |
.icon-right-circled:before { content: '\e75a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
173 |
.icon-up-circled:before { content: '\e75b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
174 |
.icon-down-open:before { content: '\e75c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
175 |
.icon-left-open:before { content: '\e75d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
176 |
.icon-right-open:before { content: '\e75e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
177 |
.icon-up-open:before { content: '\e75f'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
178 |
.icon-down-open-mini:before { content: '\e760'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
179 |
.icon-left-open-mini:before { content: '\e761'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
180 |
.icon-right-open-mini:before { content: '\e762'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
181 |
.icon-up-open-mini:before { content: '\e763'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
182 |
.icon-down-open-big:before { content: '\e764'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
183 |
.icon-left-open-big:before { content: '\e765'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
184 |
.icon-right-open-big:before { content: '\e766'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
185 |
.icon-up-open-big:before { content: '\e767'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
186 |
.icon-down:before { content: '\2b07'; } /* '⬇' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
187 |
.icon-left:before { content: '\2b05'; } /* '⬅' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
188 |
.icon-right:before { content: '\27a1'; } /* '➡' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
189 |
.icon-up:before { content: '\2b06'; } /* '⬆' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
190 |
.icon-down-dir:before { content: '\25be'; } /* '▾' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
191 |
.icon-left-dir:before { content: '\25c2'; } /* '◂' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
192 |
.icon-right-dir:before { content: '\25b8'; } /* '▸' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
193 |
.icon-up-dir:before { content: '\25b4'; } /* '▴' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
194 |
.icon-down-bold:before { content: '\e4b0'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
195 |
.icon-left-bold:before { content: '\e4ad'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
196 |
.icon-right-bold:before { content: '\e4ae'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
197 |
.icon-up-bold:before { content: '\e4af'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
198 |
.icon-down-thin:before { content: '\2193'; } /* '↓' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
199 |
.icon-left-thin:before { content: '\2190'; } /* '←' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
200 |
.icon-right-thin:before { content: '\2192'; } /* '→' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
201 |
.icon-up-thin:before { content: '\2191'; } /* '↑' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
202 |
.icon-ccw:before { content: '\27f2'; } /* '⟲' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
203 |
.icon-cw:before { content: '\27f3'; } /* '⟳' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
204 |
.icon-arrows-ccw:before { content: '\1f504'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
205 |
.icon-level-down:before { content: '\21b3'; } /* '↳' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
206 |
.icon-level-up:before { content: '\21b0'; } /* '↰' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
207 |
.icon-shuffle:before { content: '\1f500'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
208 |
.icon-loop:before { content: '\1f501'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
209 |
.icon-switch:before { content: '\21c6'; } /* '⇆' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
210 |
.icon-play:before { content: '\25b6'; } /* '▶' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
211 |
.icon-stop:before { content: '\25a0'; } /* '■' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
212 |
.icon-pause:before { content: '\2389'; } /* '⎉' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
213 |
.icon-record:before { content: '\26ab'; } /* '⚫' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
214 |
.icon-to-end:before { content: '\23ed'; } /* '⏭' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
215 |
.icon-to-start:before { content: '\23ee'; } /* '⏮' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
216 |
.icon-fast-forward:before { content: '\23e9'; } /* '⏩' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
217 |
.icon-fast-backward:before { content: '\23ea'; } /* '⏪' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
218 |
.icon-progress-0:before { content: '\e768'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
219 |
.icon-progress-1:before { content: '\e769'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
220 |
.icon-progress-2:before { content: '\e76a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
221 |
.icon-progress-3:before { content: '\e76b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
222 |
.icon-target:before { content: '\1f3af'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
223 |
.icon-palette:before { content: '\1f3a8'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
224 |
.icon-list:before { content: '\e005'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
225 |
.icon-list-add:before { content: '\e003'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
226 |
.icon-signal:before { content: '\1f4f6'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
227 |
.icon-trophy:before { content: '\1f3c6'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
228 |
.icon-battery:before { content: '\1f50b'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
229 |
.icon-back-in-time:before { content: '\e771'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
230 |
.icon-monitor:before { content: '\1f4bb'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
231 |
.icon-mobile:before { content: '\1f4f1'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
232 |
.icon-network:before { content: '\e776'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
233 |
.icon-cd:before { content: '\1f4bf'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
234 |
.icon-inbox:before { content: '\e777'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
235 |
.icon-install:before { content: '\e778'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
236 |
.icon-globe:before { content: '\1f30e'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
237 |
.icon-cloud:before { content: '\2601'; } /* '☁' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
238 |
.icon-cloud-thunder:before { content: '\26c8'; } /* '⛈' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
239 |
.icon-flash:before { content: '\26a1'; } /* '⚡' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
240 |
.icon-moon:before { content: '\263d'; } /* '☽' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
241 |
.icon-flight:before { content: '\2708'; } /* '✈' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
242 |
.icon-paper-plane:before { content: '\e79b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
243 |
.icon-leaf:before { content: '\1f342'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
244 |
.icon-lifebuoy:before { content: '\e788'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
245 |
.icon-mouse:before { content: '\e789'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
246 |
.icon-briefcase:before { content: '\1f4bc'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
247 |
.icon-suitcase:before { content: '\e78e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
248 |
.icon-dot:before { content: '\e78b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
249 |
.icon-dot-2:before { content: '\e78c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
250 |
.icon-dot-3:before { content: '\e78d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
251 |
.icon-brush:before { content: '\e79a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
252 |
.icon-magnet:before { content: '\e7a1'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
253 |
.icon-infinity:before { content: '\221e'; } /* '∞' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
254 |
.icon-erase:before { content: '\232b'; } /* '⌫' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
255 |
.icon-chart-pie:before { content: '\e751'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
256 |
.icon-chart-line:before { content: '\1f4c8'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
257 |
.icon-chart-bar:before { content: '\1f4ca'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
258 |
.icon-chart-area:before { content: '\1f53e'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
259 |
.icon-tape:before { content: '\2707'; } /* '✇' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
260 |
.icon-graduation-cap:before { content: '\1f393'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
261 |
.icon-language:before { content: '\e752'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
262 |
.icon-ticket:before { content: '\1f3ab'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
263 |
.icon-water:before { content: '\1f4a6'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
264 |
.icon-droplet:before { content: '\1f4a7'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
265 |
.icon-air:before { content: '\e753'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
266 |
.icon-credit-card:before { content: '\1f4b3'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
267 |
.icon-floppy:before { content: '\1f4be'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
268 |
.icon-clipboard:before { content: '\1f4cb'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
269 |
.icon-megaphone:before { content: '\1f4e3'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
270 |
.icon-database:before { content: '\e754'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
271 |
.icon-drive:before { content: '\e755'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
272 |
.icon-bucket:before { content: '\e756'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
273 |
.icon-thermometer:before { content: '\e757'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
274 |
.icon-key:before { content: '\1f511'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
275 |
.icon-flow-cascade:before { content: '\e790'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
276 |
.icon-flow-branch:before { content: '\e791'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
277 |
.icon-flow-tree:before { content: '\e792'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
278 |
.icon-flow-line:before { content: '\e793'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
279 |
.icon-flow-parallel:before { content: '\e794'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
280 |
.icon-rocket:before { content: '\1f680'; } |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
281 |
.icon-gauge:before { content: '\e7a2'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
282 |
.icon-traffic-cone:before { content: '\e7a3'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
283 |
.icon-cc:before { content: '\e7a5'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
284 |
.icon-cc-by:before { content: '\e7a6'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
285 |
.icon-cc-nc:before { content: '\e7a7'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
286 |
.icon-cc-nc-eu:before { content: '\e7a8'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
287 |
.icon-cc-nc-jp:before { content: '\e7a9'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
288 |
.icon-cc-sa:before { content: '\e7aa'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
289 |
.icon-cc-nd:before { content: '\e7ab'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
290 |
.icon-cc-pd:before { content: '\e7ac'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
291 |
.icon-cc-zero:before { content: '\e7ad'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
292 |
.icon-cc-share:before { content: '\e7ae'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
293 |
.icon-cc-remix:before { content: '\e7af'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
294 |
.icon-github:before { content: '\f300'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
295 |
.icon-github-circled:before { content: '\f301'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
296 |
.icon-flickr:before { content: '\f303'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
297 |
.icon-flickr-circled:before { content: '\f304'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
298 |
.icon-vimeo:before { content: '\f306'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
299 |
.icon-vimeo-circled:before { content: '\f307'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
300 |
.icon-twitter:before { content: '\f309'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
301 |
.icon-twitter-circled:before { content: '\f30a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
302 |
.icon-facebook:before { content: '\f30c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
303 |
.icon-facebook-circled:before { content: '\f30d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
304 |
.icon-facebook-squared:before { content: '\f30e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
305 |
.icon-gplus:before { content: '\f30f'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
306 |
.icon-gplus-circled:before { content: '\f310'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
307 |
.icon-pinterest:before { content: '\f312'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
308 |
.icon-pinterest-circled:before { content: '\f313'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
309 |
.icon-tumblr:before { content: '\f315'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
310 |
.icon-tumblr-circled:before { content: '\f316'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
311 |
.icon-linkedin:before { content: '\f318'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
312 |
.icon-linkedin-circled:before { content: '\f319'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
313 |
.icon-dribbble:before { content: '\f31b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
314 |
.icon-dribbble-circled:before { content: '\f31c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
315 |
.icon-stumbleupon:before { content: '\f31e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
316 |
.icon-stumbleupon-circled:before { content: '\f31f'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
317 |
.icon-lastfm:before { content: '\f321'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
318 |
.icon-lastfm-circled:before { content: '\f322'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
319 |
.icon-rdio:before { content: '\f324'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
320 |
.icon-rdio-circled:before { content: '\f325'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
321 |
.icon-spotify:before { content: '\f327'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
322 |
.icon-spotify-circled:before { content: '\f328'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
323 |
.icon-qq:before { content: '\f32a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
324 |
.icon-instagram:before { content: '\f32d'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
325 |
.icon-dropbox:before { content: '\f330'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
326 |
.icon-evernote:before { content: '\f333'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
327 |
.icon-flattr:before { content: '\f336'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
328 |
.icon-skype:before { content: '\f339'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
329 |
.icon-skype-circled:before { content: '\f33a'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
330 |
.icon-renren:before { content: '\f33c'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
331 |
.icon-sina-weibo:before { content: '\f33f'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
332 |
.icon-paypal:before { content: '\f342'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
333 |
.icon-picasa:before { content: '\f345'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
334 |
.icon-soundcloud:before { content: '\f348'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
335 |
.icon-mixi:before { content: '\f34b'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
336 |
.icon-behance:before { content: '\f34e'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
337 |
.icon-google-circles:before { content: '\f351'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
338 |
.icon-vkontakte:before { content: '\f354'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
339 |
.icon-smashing:before { content: '\f357'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
340 |
.icon-sweden:before { content: '\f601'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
341 |
.icon-db-shape:before { content: '\f600'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
342 |
.icon-logo-db:before { content: '\f603'; } /* '' */ |
cf21813d7003
[css] add the entypo font as available ressource (closes #2930356)
David Douard <david.douard@logilab.fr>
parents:
diff
changeset
|
343 |