]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentythirteen/genericons/README.txt
WordPress 4.2.1
[autoinstalls/wordpress.git] / wp-content / themes / twentythirteen / genericons / README.txt
1   ___  ____  __ _  ____  ____  __  ___  __   __ _  ____ 
2  / __)(  __)(  ( \(  __)(  _ \(  )/ __)/  \ (  ( \/ ___)
3 ( (_ \ ) _) /    / ) _)  )   / )(( (__(  O )/    /\___ \
4  \___/(____)\_)__)(____)(__\_)(__)\___)\__/ \_)__)(____/
5
6
7 Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
8
9 Use 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
17 To 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
33 Note: 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
35 From 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
45 This 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
47 You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
48
49
50 _  _ ____ ___ ____ ____ 
51 |\ | |  |  |  |___ [__  
52 | \| |__|  |  |___ ___]
53
54
55 Photoshop mockups:
56
57 Genericons-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
59 For 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
61 Pixel grid:
62
63 Note 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
65 Also 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
67 Updates:
68
69 We 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
77 V3.0.3:
78 Bunch of updates mostly.
79 - Two new icons, Dropbox and Fullscreen.
80 - Updates to all icons containing an exclamation mark.
81 - Updates to Image and Quote.
82 - Nicer "Share" icon.
83 - Bigger default Linkedin icon.
84
85 V3.0.2: 
86 A slew of new stuff and updates.
87 - Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
88 - New generic icons: heart, lock and print.
89 - New editing icons: code, bold, italic, image
90 - New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
91 - The hyperlink icon has been updated to be clearer, chunkier.
92 - The "home" icon has been updated for style, size and clarity.
93 - The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
94 - The document icon has been updated for style.
95 - The "pin" icon has been updated for style and clarity.
96 - The Twitter icon has been scaled down to fit with the other social icons.
97
98 V3.0.1: 
99 Mostly maintenance. 
100 - Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
101 - Added inverse Google+ and Path.
102 - Replaced tabs with spaces in the helper CSS.
103 - 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.
104
105 V3.0:
106 Mainly maintenance and a few new icons.
107 - Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
108 - Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
109 - 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.
110 - Genericons.com now has a mini release blog.
111 - The CSS has prettier formatting, props Konstantin Obenland.
112
113 V2.09:
114 Updated 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.                                            
115
116 V2.06:
117 Included 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.
118
119 V2.05:
120 Added a bunch of new icons, including upload to cloud, download to cloud, many more.
121
122 V2:
123 Initial public release