• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..14-Jan-2021-

font/H14-Jan-2021-133133

Aleo-Bold.eotH A D13-Jan-202169 KiB

Aleo-Bold.svgH A D13-Jan-2021228.4 KiB

Aleo-Bold.ttfH A D13-Jan-202168.8 KiB

Aleo-Bold.woffH A D13-Jan-2021102.7 KiB770766

Aleo-BoldItalic.eotH A D13-Jan-202160.1 KiB

Aleo-BoldItalic.svgH A D13-Jan-2021207.8 KiB

Aleo-BoldItalic.ttfH A D13-Jan-202159.9 KiB

Aleo-BoldItalic.woffH A D13-Jan-2021103.1 KiB771770

Aleo-Italic-webfont.eotH A D13-Jan-202167.9 KiB

Aleo-Italic-webfont.svgH A D13-Jan-202189.1 KiB246246

Aleo-Italic-webfont.ttfH A D13-Jan-202167.8 KiB

Aleo-Italic-webfont.woffH A D13-Jan-202137.4 KiB

Aleo-Light-webfont.eotH A D13-Jan-202165.3 KiB

Aleo-Light-webfont.svgH A D13-Jan-202194.6 KiB246246

Aleo-Light-webfont.ttfH A D13-Jan-202165.1 KiB

Aleo-Light-webfont.woffH A D13-Jan-202134.5 KiB

Aleo-LightItalic-webfont.eotH A D13-Jan-202170.8 KiB

Aleo-LightItalic-webfont.svgH A D13-Jan-202198.1 KiB246246

Aleo-LightItalic-webfont.ttfH A D13-Jan-202170.6 KiB

Aleo-LightItalic-webfont.woffH A D13-Jan-202137.6 KiB

Aleo-Regular-webfont.eotH A D13-Jan-202164 KiB

Aleo-Regular-webfont.svgH A D13-Jan-202184.9 KiB246246

Aleo-Regular-webfont.ttfH A D13-Jan-202163.8 KiB

Aleo-Regular-webfont.woffH A D13-Jan-202135.4 KiB

COPYING.txtH A D13-Jan-20211.4 KiB95

Genericons-Regular.otfH A D13-Jan-202117.4 KiB

LICENSE.txtH A D13-Jan-202117.7 KiB340281

README.txtH A D13-Jan-20215.5 KiB11580

SIL Open Font License 1.1.txtH A D13-Jan-20214.2 KiB9174

aleo.cssH A D13-Jan-20212.5 KiB6761

genericons.cssH A D13-Jan-202122.2 KiB195172

README.txt

1  ___  ____  __ _  ____  ____  __  ___  __   __ _  ____
2 / __)(  __)(  ( \(  __)(  _ \(  )/ __)/  \ (  ( \/ ___)
3( (_ \ ) _) /    / ) _)  )   / )(( (__(  O )/    /\___ \
4 \___/(____)\_)__)(____)(__\_)(__)\___)\__/ \_)__)(____/
5
6
7Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
8
9Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
10
11
12_  _ ____ ____ ____ ____
13|  | [__  |__| | __ |___
14|__| ___] |  | |__] |___
15
16
17To use it, place the font folder in your stylesheet directory and paste this in your CSS file:
18
19/* =Genericons, thanks to FontSquirrel.com for conversion!
20-------------------------------------------------------------- */
21@font-face {
22    font-family: 'Genericons';
23    src: url('font/genericons-regular-webfont.eot');
24    src: url('font/genericons-regular-webfont.eot?#iefix') format('embedded-opentype'),
25         url('font/genericons-regular-webfont.woff') format('woff'),
26         url('font/genericons-regular-webfont.ttf') format('truetype'),
27         url('font/genericons-regular-webfont.svg#genericonsregular') format('svg');
28    font-weight: normal;
29    font-style: normal;
30
31}
32
33Note: the above only works if you don't use a CDN. If you do, or don't know what that is, you should use the syntax that's embedded in genericons.css.
34
35From then on, you can create an icon like this:
36
37.my-icon:before {
38	content: '\f101';
39	display: inline-block;
40	-webkit-font-smoothing: antialiased;
41	font: normal 16px/1 'Genericons';
42	vertical-align: top;
43}
44
45This will output a comment icon before every element with the class "my-icon". The "content: '\f101';" part of this CSS is easily copied from the helper tool at http://genericons.com/
46
47You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
48
49
50_  _ ____ ___ ____ ____
51|\ | |  |  |  |___ [__
52| \| |__|  |  |___ ___]
53
54
55Photoshop mockups:
56
57Genericons-Regular.otf found in the root directory of this zip has not been web-font-ified. So you can drop it in your system fonts folder and use the font in Photoshop if you like.
58
59For those of you using Genericons in your Photoshop mockup, remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
60
61Pixel grid:
62
63Note that Genericons has been designed for a 16x16 pixel grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll also look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible.
64
65Also note the CSS property "-webkit-font-smoothing: antialiased". That makes the icons look great in WebKit browsers. Please see http://noscope.com/2012/font-smoothing for more info.
66
67Updates:
68
69We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
70
71
72
73____ _  _ ____ _  _ ____ ____ _    ____ ____
74|    |__| |__| |\ | | __ |___ |    |  | | __
75|___ |  | |  | | \| |__] |___ |___ |__| |__]
76
77V3.0.2:
78A slew of new stuff and updates.
79- Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
80- New generic icons: heart, lock and print.
81- New editing icons: code, bold, italic, image
82- New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
83- The hyperlink icon has been updated to be clearer, chunkier.
84- The "home" icon has been updated for style, size and clarity.
85- The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
86- The document icon has been updated for style.
87- The "pin" icon has been updated for style and clarity.
88- The Twitter icon has been scaled down to fit with the other social icons.
89
90V3.0.1:
91Mostly maintenance.
92- Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
93- Added inverse Google+ and Path.
94- Replaced tabs with spaces in the helper CSS.
95- Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
96
97V3.0:
98Mainly maintenance and a few new icons.
99- Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
100- Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
101- So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu.
102- Genericons.com now has a mini release blog.
103- The CSS has prettier formatting, props Konstantin Obenland.
104
105V2.09:
106Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
107
108V2.06:
109Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
110
111V2.05:
112Added a bunch of new icons, including upload to cloud, download to cloud, many more.
113
114V2:
115Initial public release