Skip to content

Commit

Permalink
Composer-ifying.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswsinc committed Apr 23, 2015
1 parent 8083cce commit 33d2c01
Show file tree
Hide file tree
Showing 9 changed files with 102 additions and 78 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## WebSharks™ Icon Font

This is a font containing logos/icons associated w/ WebSharks, Inc.
Font containing WebSharks logos/icons.
45 changes: 45 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "websharks/sharkicons",
"homepage": "https://github.com/websharks/sharkicons",
"description": "Font containing WebSharks logos/icons.",
"keywords": [
"websharks",
"wordpress",
"php"
],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "http://websharks-inc.com/",
"role": "company"
}, {
"name": "jaswsinc",
"homepage": "http://jaswsinc.com/",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "http://raam.org/",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/sharkicons",
"issues": "https://github.com/websharks/sharkicons/issues"
},

"require": {
"php": ">=5.2"
},
"minimum-stability": "dev",
"prefer-stable": true,

"autoload": {
"psr-4": {
"WebSharks\\Sharkicons\\": "src/includes/classes/"
}
},

"config": {
"vendor-dir": "src/includes/vendor"
}
}
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
56 changes: 56 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
@charset "UTF-8";
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'sharkicons';
src: url('fonts/sharkicons.eot?e9o471');
src: url('fonts/sharkicons.eot?#iefixe9o471') format('embedded-opentype'),
url('fonts/sharkicons.woff?e9o471') format('woff'),
url('fonts/sharkicons.ttf?e9o471') format('truetype'),
url('fonts/sharkicons.svg?e9o471#sharkicons') format('svg');
}
[class^='wsi-']::before,
[class*=' wsi-']::before {
font-family: 'sharkicons' !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@media speech {
[class^='wsi-']::before,
[class*=' wsi-']::before {
speak: none;
}
}
@media aural {
[class^='wsi-']::before,
[class*=' wsi-']::before {
speak: none;
}
}
.wsi-comment-mail::before {
content: '\e000';
position: relative;
top: .2em;
}
.wsi-comment-mail-one::before {
content: '\e001';
position: relative;
top: .2em;
}
.wsi-zencache::before {
content: '\e002';
}
.wsi-zencache-logo::before {
content: '\e003';
}
.wsi-wp-kb-articles::before {
content: '\e004';
}
.wsi-s2member::before {
content: '\e005';
}
File renamed without changes.
77 changes: 0 additions & 77 deletions styles.css

This file was deleted.

0 comments on commit 33d2c01

Please sign in to comment.