├── .fontcustom-manifest.json ├── .gitignore ├── README.md ├── fontcustom.yml ├── justVector Font ├── README.txt ├── fonts │ ├── JustVector_befc36341d9795c51945d4d132517a7a.eot │ ├── JustVector_befc36341d9795c51945d4d132517a7a.svg │ ├── JustVector_befc36341d9795c51945d4d132517a7a.ttf │ └── JustVector_befc36341d9795c51945d4d132517a7a.woff ├── preview.html └── stylesheets │ ├── _JustVector.scss │ └── justVector.css └── justvector ├── aim.svg ├── aim_alt.svg ├── amazon.svg ├── app_store.svg ├── apple.svg ├── arto.svg ├── aws.svg ├── baidu.svg ├── basecamp.svg ├── bebo.svg ├── behance.svg ├── bing.svg ├── blip.svg ├── blogger.svg ├── bnter.svg ├── brightkite.svg ├── cinch.svg ├── cloudapp.svg ├── coroflot.svg ├── creative_commons.svg ├── dailybooth.svg ├── delicious.svg ├── designbump.svg ├── designfloat.svg ├── designmoo.svg ├── deviantart.svg ├── digg.svg ├── digg_alt.svg ├── diigo.svg ├── dribbble.svg ├── dropbox.svg ├── drupal.svg ├── dzone.svg ├── ebay.svg ├── ember.svg ├── etsy.svg ├── evernote.svg ├── facebook.svg ├── facebook_alt.svg ├── facebook_places.svg ├── facto.me.svg ├── feedburner.svg ├── flickr.svg ├── folkd.svg ├── formspring.svg ├── forrst.svg ├── foursquare.svg ├── friendfeed.svg ├── friendster.svg ├── gdgt.svg ├── github.svg ├── github_alt.svg ├── goodreads.svg ├── google.svg ├── google_buzz.svg ├── google_talk.svg ├── gowalla.svg ├── gowalla_alt.svg ├── grooveshark.svg ├── hacker_news.svg ├── hype_machine.svg ├── hyves.svg ├── icq.svg ├── identi.ca.svg ├── instapaper.svg ├── itunes.svg ├── kik.svg ├── krop.svg ├── last.fm.svg ├── linkedin.svg ├── linkedin_alt.svg ├── livejournal.svg ├── lovedsgn.svg ├── meetup.svg ├── metacafe.svg ├── ming.svg ├── mister_wong.svg ├── mixx.svg ├── mixx_alt.svg ├── mobileme.svg ├── msn_messenger.svg ├── myspace.svg ├── myspace_alt.svg ├── newsvine.svg ├── official.fm.svg ├── openid.svg ├── orkut.svg ├── pandora.svg ├── path.svg ├── paypal.svg ├── photobucket.svg ├── picasa.svg ├── picassa.svg ├── pinboard.in.svg ├── ping.svg ├── pingchat.svg ├── playstation.svg ├── plixi.svg ├── plurk.svg ├── podcast.svg ├── posterous.svg ├── qik.svg ├── quik.svg ├── quora.svg ├── rdio.svg ├── readernaut.svg ├── reddit.svg ├── retweet.svg ├── robo.to.svg ├── rss.svg ├── scribd.svg ├── sharethis.svg ├── simplenote.svg ├── skype.svg ├── slashdot.svg ├── slideshare.svg ├── smugmug.svg ├── soundcloud.svg ├── spotify.svg ├── squarespace.svg ├── squidoo.svg ├── steam.svg ├── stumbleupon.svg ├── technorati.svg ├── threewords.me.svg ├── tribe.net.svg ├── tripit.svg ├── tumblr.svg ├── twitter.svg ├── twitter_alt.svg ├── vcard.svg ├── viddler.svg ├── vimeo.svg ├── virb.svg ├── w3.svg ├── whatsapp.svg ├── wikipedia.svg ├── windows.svg ├── wists.svg ├── wordpress.svg ├── wordpress_alt.svg ├── xing.svg ├── yahoo!.svg ├── yahoo!_buzz.svg ├── yahoo!_messenger.svg ├── yelp.svg ├── youtube.svg ├── youtube_alt.svg ├── zerply.svg ├── zootool.svg └── zynga.svg /.fontcustom-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/.fontcustom-manifest.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.zip 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/README.md -------------------------------------------------------------------------------- /fontcustom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/fontcustom.yml -------------------------------------------------------------------------------- /justVector Font/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/README.txt -------------------------------------------------------------------------------- /justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.eot -------------------------------------------------------------------------------- /justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.svg -------------------------------------------------------------------------------- /justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.ttf -------------------------------------------------------------------------------- /justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/fonts/JustVector_befc36341d9795c51945d4d132517a7a.woff -------------------------------------------------------------------------------- /justVector Font/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/preview.html -------------------------------------------------------------------------------- /justVector Font/stylesheets/_JustVector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/stylesheets/_JustVector.scss -------------------------------------------------------------------------------- /justVector Font/stylesheets/justVector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justVector Font/stylesheets/justVector.css -------------------------------------------------------------------------------- /justvector/aim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/aim.svg -------------------------------------------------------------------------------- /justvector/aim_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/aim_alt.svg -------------------------------------------------------------------------------- /justvector/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/amazon.svg -------------------------------------------------------------------------------- /justvector/app_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/app_store.svg -------------------------------------------------------------------------------- /justvector/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/apple.svg -------------------------------------------------------------------------------- /justvector/arto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/arto.svg -------------------------------------------------------------------------------- /justvector/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/aws.svg -------------------------------------------------------------------------------- /justvector/baidu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/baidu.svg -------------------------------------------------------------------------------- /justvector/basecamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/basecamp.svg -------------------------------------------------------------------------------- /justvector/bebo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/bebo.svg -------------------------------------------------------------------------------- /justvector/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/behance.svg -------------------------------------------------------------------------------- /justvector/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/bing.svg -------------------------------------------------------------------------------- /justvector/blip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/blip.svg -------------------------------------------------------------------------------- /justvector/blogger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/blogger.svg -------------------------------------------------------------------------------- /justvector/bnter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/bnter.svg -------------------------------------------------------------------------------- /justvector/brightkite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/brightkite.svg -------------------------------------------------------------------------------- /justvector/cinch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/cinch.svg -------------------------------------------------------------------------------- /justvector/cloudapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/cloudapp.svg -------------------------------------------------------------------------------- /justvector/coroflot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/coroflot.svg -------------------------------------------------------------------------------- /justvector/creative_commons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/creative_commons.svg -------------------------------------------------------------------------------- /justvector/dailybooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/dailybooth.svg -------------------------------------------------------------------------------- /justvector/delicious.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/delicious.svg -------------------------------------------------------------------------------- /justvector/designbump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/designbump.svg -------------------------------------------------------------------------------- /justvector/designfloat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/designfloat.svg -------------------------------------------------------------------------------- /justvector/designmoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/designmoo.svg -------------------------------------------------------------------------------- /justvector/deviantart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/deviantart.svg -------------------------------------------------------------------------------- /justvector/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/digg.svg -------------------------------------------------------------------------------- /justvector/digg_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/digg_alt.svg -------------------------------------------------------------------------------- /justvector/diigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/diigo.svg -------------------------------------------------------------------------------- /justvector/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/dribbble.svg -------------------------------------------------------------------------------- /justvector/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/dropbox.svg -------------------------------------------------------------------------------- /justvector/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/drupal.svg -------------------------------------------------------------------------------- /justvector/dzone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/dzone.svg -------------------------------------------------------------------------------- /justvector/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/ebay.svg -------------------------------------------------------------------------------- /justvector/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/ember.svg -------------------------------------------------------------------------------- /justvector/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/etsy.svg -------------------------------------------------------------------------------- /justvector/evernote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/evernote.svg -------------------------------------------------------------------------------- /justvector/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/facebook.svg -------------------------------------------------------------------------------- /justvector/facebook_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/facebook_alt.svg -------------------------------------------------------------------------------- /justvector/facebook_places.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/facebook_places.svg -------------------------------------------------------------------------------- /justvector/facto.me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/facto.me.svg -------------------------------------------------------------------------------- /justvector/feedburner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/feedburner.svg -------------------------------------------------------------------------------- /justvector/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/flickr.svg -------------------------------------------------------------------------------- /justvector/folkd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/folkd.svg -------------------------------------------------------------------------------- /justvector/formspring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/formspring.svg -------------------------------------------------------------------------------- /justvector/forrst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/forrst.svg -------------------------------------------------------------------------------- /justvector/foursquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/foursquare.svg -------------------------------------------------------------------------------- /justvector/friendfeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/friendfeed.svg -------------------------------------------------------------------------------- /justvector/friendster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/friendster.svg -------------------------------------------------------------------------------- /justvector/gdgt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/gdgt.svg -------------------------------------------------------------------------------- /justvector/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/github.svg -------------------------------------------------------------------------------- /justvector/github_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/github_alt.svg -------------------------------------------------------------------------------- /justvector/goodreads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/goodreads.svg -------------------------------------------------------------------------------- /justvector/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/google.svg -------------------------------------------------------------------------------- /justvector/google_buzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/google_buzz.svg -------------------------------------------------------------------------------- /justvector/google_talk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/google_talk.svg -------------------------------------------------------------------------------- /justvector/gowalla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/gowalla.svg -------------------------------------------------------------------------------- /justvector/gowalla_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/gowalla_alt.svg -------------------------------------------------------------------------------- /justvector/grooveshark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/grooveshark.svg -------------------------------------------------------------------------------- /justvector/hacker_news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/hacker_news.svg -------------------------------------------------------------------------------- /justvector/hype_machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/hype_machine.svg -------------------------------------------------------------------------------- /justvector/hyves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/hyves.svg -------------------------------------------------------------------------------- /justvector/icq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/icq.svg -------------------------------------------------------------------------------- /justvector/identi.ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/identi.ca.svg -------------------------------------------------------------------------------- /justvector/instapaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/instapaper.svg -------------------------------------------------------------------------------- /justvector/itunes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/itunes.svg -------------------------------------------------------------------------------- /justvector/kik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/kik.svg -------------------------------------------------------------------------------- /justvector/krop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/krop.svg -------------------------------------------------------------------------------- /justvector/last.fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/last.fm.svg -------------------------------------------------------------------------------- /justvector/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/linkedin.svg -------------------------------------------------------------------------------- /justvector/linkedin_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/linkedin_alt.svg -------------------------------------------------------------------------------- /justvector/livejournal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/livejournal.svg -------------------------------------------------------------------------------- /justvector/lovedsgn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/lovedsgn.svg -------------------------------------------------------------------------------- /justvector/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/meetup.svg -------------------------------------------------------------------------------- /justvector/metacafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/metacafe.svg -------------------------------------------------------------------------------- /justvector/ming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/ming.svg -------------------------------------------------------------------------------- /justvector/mister_wong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/mister_wong.svg -------------------------------------------------------------------------------- /justvector/mixx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/mixx.svg -------------------------------------------------------------------------------- /justvector/mixx_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/mixx_alt.svg -------------------------------------------------------------------------------- /justvector/mobileme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/mobileme.svg -------------------------------------------------------------------------------- /justvector/msn_messenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/msn_messenger.svg -------------------------------------------------------------------------------- /justvector/myspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/myspace.svg -------------------------------------------------------------------------------- /justvector/myspace_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/myspace_alt.svg -------------------------------------------------------------------------------- /justvector/newsvine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/newsvine.svg -------------------------------------------------------------------------------- /justvector/official.fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/official.fm.svg -------------------------------------------------------------------------------- /justvector/openid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/openid.svg -------------------------------------------------------------------------------- /justvector/orkut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/orkut.svg -------------------------------------------------------------------------------- /justvector/pandora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/pandora.svg -------------------------------------------------------------------------------- /justvector/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/path.svg -------------------------------------------------------------------------------- /justvector/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/paypal.svg -------------------------------------------------------------------------------- /justvector/photobucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/photobucket.svg -------------------------------------------------------------------------------- /justvector/picasa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/picasa.svg -------------------------------------------------------------------------------- /justvector/picassa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/picassa.svg -------------------------------------------------------------------------------- /justvector/pinboard.in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/pinboard.in.svg -------------------------------------------------------------------------------- /justvector/ping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/ping.svg -------------------------------------------------------------------------------- /justvector/pingchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/pingchat.svg -------------------------------------------------------------------------------- /justvector/playstation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/playstation.svg -------------------------------------------------------------------------------- /justvector/plixi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/plixi.svg -------------------------------------------------------------------------------- /justvector/plurk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/plurk.svg -------------------------------------------------------------------------------- /justvector/podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/podcast.svg -------------------------------------------------------------------------------- /justvector/posterous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/posterous.svg -------------------------------------------------------------------------------- /justvector/qik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/qik.svg -------------------------------------------------------------------------------- /justvector/quik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/quik.svg -------------------------------------------------------------------------------- /justvector/quora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/quora.svg -------------------------------------------------------------------------------- /justvector/rdio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/rdio.svg -------------------------------------------------------------------------------- /justvector/readernaut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/readernaut.svg -------------------------------------------------------------------------------- /justvector/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/reddit.svg -------------------------------------------------------------------------------- /justvector/retweet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/retweet.svg -------------------------------------------------------------------------------- /justvector/robo.to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/robo.to.svg -------------------------------------------------------------------------------- /justvector/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/rss.svg -------------------------------------------------------------------------------- /justvector/scribd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/scribd.svg -------------------------------------------------------------------------------- /justvector/sharethis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/sharethis.svg -------------------------------------------------------------------------------- /justvector/simplenote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/simplenote.svg -------------------------------------------------------------------------------- /justvector/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/skype.svg -------------------------------------------------------------------------------- /justvector/slashdot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/slashdot.svg -------------------------------------------------------------------------------- /justvector/slideshare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/slideshare.svg -------------------------------------------------------------------------------- /justvector/smugmug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/smugmug.svg -------------------------------------------------------------------------------- /justvector/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/soundcloud.svg -------------------------------------------------------------------------------- /justvector/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/spotify.svg -------------------------------------------------------------------------------- /justvector/squarespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/squarespace.svg -------------------------------------------------------------------------------- /justvector/squidoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/squidoo.svg -------------------------------------------------------------------------------- /justvector/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/steam.svg -------------------------------------------------------------------------------- /justvector/stumbleupon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/stumbleupon.svg -------------------------------------------------------------------------------- /justvector/technorati.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/technorati.svg -------------------------------------------------------------------------------- /justvector/threewords.me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/threewords.me.svg -------------------------------------------------------------------------------- /justvector/tribe.net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/tribe.net.svg -------------------------------------------------------------------------------- /justvector/tripit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/tripit.svg -------------------------------------------------------------------------------- /justvector/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/tumblr.svg -------------------------------------------------------------------------------- /justvector/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/twitter.svg -------------------------------------------------------------------------------- /justvector/twitter_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/twitter_alt.svg -------------------------------------------------------------------------------- /justvector/vcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/vcard.svg -------------------------------------------------------------------------------- /justvector/viddler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/viddler.svg -------------------------------------------------------------------------------- /justvector/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/vimeo.svg -------------------------------------------------------------------------------- /justvector/virb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/virb.svg -------------------------------------------------------------------------------- /justvector/w3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/w3.svg -------------------------------------------------------------------------------- /justvector/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/whatsapp.svg -------------------------------------------------------------------------------- /justvector/wikipedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/wikipedia.svg -------------------------------------------------------------------------------- /justvector/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/windows.svg -------------------------------------------------------------------------------- /justvector/wists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/wists.svg -------------------------------------------------------------------------------- /justvector/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/wordpress.svg -------------------------------------------------------------------------------- /justvector/wordpress_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/wordpress_alt.svg -------------------------------------------------------------------------------- /justvector/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/xing.svg -------------------------------------------------------------------------------- /justvector/yahoo!.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/yahoo!.svg -------------------------------------------------------------------------------- /justvector/yahoo!_buzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/yahoo!_buzz.svg -------------------------------------------------------------------------------- /justvector/yahoo!_messenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/yahoo!_messenger.svg -------------------------------------------------------------------------------- /justvector/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/yelp.svg -------------------------------------------------------------------------------- /justvector/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/youtube.svg -------------------------------------------------------------------------------- /justvector/youtube_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/youtube_alt.svg -------------------------------------------------------------------------------- /justvector/zerply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/zerply.svg -------------------------------------------------------------------------------- /justvector/zootool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/zootool.svg -------------------------------------------------------------------------------- /justvector/zynga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seich/JustVector-Icons-Font/HEAD/justvector/zynga.svg --------------------------------------------------------------------------------