The search on We Love Icon Fonts is a long requested issue.
To use the search, just drag'n'drop the js file (minfied or unminified) in the bookmarks bar.
You can watch an installation video here: https://vimeo.com/94447449.
| <section class="wrapper"> | |
| <header> | |
| <h1>Social Colors - <a href="http://color.joey.so"><span>full collection</span></a></h1> | |
| </header> | |
| <li class="fb">Facebook #3B5998</li> | |
| <li class="flick">Flickr #FE0883</li> | |
| <li class="four">Foursquare #8FD400</li> | |
| <li class="gplus">Google+ #C63D2D</li> | |
| <li class="inst">Instagram #4E433C</li> | |
| <li class="linked">Linkedin #4875B4</li> |
| @import "helper.GRID"; | |
| .wrapper { | |
| width:100%; | |
| max-width:70em; | |
| @extend %grid--father; | |
| } |
| /* importing the compass sprite mixins */ | |
| @import "compass/utilities/sprites/base"; | |
| /* HERE's the magic: Setting a variable BEFORE loading the sprites */ | |
| $brands-sprite-dimension:true; | |
| /* loading all the images from the brands directory */ | |
| @import "brands/*.png"; | |
| /* and finally, telling compass to include ALL THE SPRITES \o/ */ | |
| @include all-breands-sprites; |
| # placed in ~/.bashrc | |
| alias keyboardconf='sudo dpkg-reconfigure keyboard-configuration' | |
| # Whenever keyboardconf is written inside a terminal the configure screen comes up and you can | |
| # re-configure the settings to the language you want. It's not a perfect solution and I'm happy | |
| # my keyboard doesn't switch all the time (it's total random) |
| // Add this to your functions.php | |
| function include_page_content($path) { | |
| $post = get_page_by_path($path); | |
| $content = apply_filters('the_content', $post->post_content); | |
| echo $content; | |
| } |
| <!-- the standard loop for all your posts --> | |
| {% for post in site.posts %} | |
| <!-- check if there is a portfolio thing set inside the Front Matter | |
| Note: Do not set "portfolio: false" on normal posts - this is not needed | |
| and could lead to problems | |
| --> | |
| {% if post.portfolio %} | |
| <!-- do nothing here --> | |
| {% endif %} |
| Types of Comments in (S)CSS: | |
| /* | |
| Standard multi-line comment. | |
| This is the most used I'd say. | |
| Though this is pretty awesome while developing, it should be removed for production. | |
| */ | |
| var net = require('net'); | |
| var server = net.createServer(function (c) { | |
| console.log('server connected'); | |
| c.on('end', function() { | |
| console.log('server disconnected'); | |
| }); | |
| c.write('Hello World!'); | |
| c.pipe(c); |
| # /etc/hosts | |
| 127.0.0.1 localhost | |
| 127.8.8.8 fuckyouverymu.ch | |
| 127.0.0.8 atariba.se | |
| 127.0.0.3 typo3.local | |
| 127.0.0.5 my-awesome-site.local | |
| # In my browser I can now use http://fuckyouverymu.ch to see my localhost (because I have no site.conf for fuckyouverymu.ch at the moment :D) |
The search on We Love Icon Fonts is a long requested issue.
To use the search, just drag'n'drop the js file (minfied or unminified) in the bookmarks bar.
You can watch an installation video here: https://vimeo.com/94447449.