Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-w committed Aug 7, 2014
0 parents commit 3e8feda
Show file tree
Hide file tree
Showing 19 changed files with 5,704 additions and 0 deletions.
90 changes: 90 additions & 0 deletions .fontcustom-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{
"checksum": {
"previous": "79a638a02ed2577cbd5404dc9cd8a48552a5228acf8b94cde2abf920b5a57f5f",
"current": "79a638a02ed2577cbd5404dc9cd8a48552a5228acf8b94cde2abf920b5a57f5f"
},
"fonts": [
"assets/fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.ttf",
"assets/fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.svg",
"assets/fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.woff",
"assets/fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.eot"
],
"glyphs": {
"archlinux": {
"codepoint": 61714,
"source": "vectors/archlinux.svg"
},
"centos": {
"codepoint": 61709,
"source": "vectors/centos.svg"
},
"debian": {
"codepoint": 61700,
"source": "vectors/debian.svg"
},
"fedora": {
"codepoint": 61705,
"source": "vectors/fedora.svg"
},
"linux-mint": {
"codepoint": 61701,
"source": "vectors/linux-mint.svg"
},
"linux-mint-inverse": {
"codepoint": 61702,
"source": "vectors/linux-mint-inverse.svg"
},
"mageia": {
"codepoint": 61704,
"source": "vectors/mageia.svg"
},
"mandriva": {
"codepoint": 61710,
"source": "vectors/mandriva.svg"
},
"opensuse": {
"codepoint": 61712,
"source": "vectors/opensuse.svg"
},
"redhat": {
"codepoint": 61707,
"source": "vectors/redhat.svg"
},
"ubuntu": {
"codepoint": 61698,
"source": "vectors/ubuntu.svg"
},
"ubuntu-inverse": {
"codepoint": 61699,
"source": "vectors/ubuntu-inverse.svg"
}
},
"options": {
"autowidth": false,
"config": "fontcustom.yml",
"css_selector": ".fl-{{glyph}}",
"debug": false,
"font_name": "font-linux",
"force": false,
"input": {
"templates": "vectors",
"vectors": "vectors"
},
"no_hash": false,
"output": {
"css": "assets/stylesheets",
"fonts": "assets/fonts",
"preview": "views/styleguide"
},
"preprocessor_path": "",
"quiet": false,
"templates": [
"css",
"preview"
]
},
"templates": [
"assets/stylesheets/font-linux.css",
"views/styleguide/font-linux-preview.html"
]
}
194 changes: 194 additions & 0 deletions assets/fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
63 changes: 63 additions & 0 deletions assets/stylesheets/font-linux.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
Icon Font: font-linux
*/

@font-face {
font-family: "font-linux";
src: url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.eot");
src: url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.eot?#iefix") format("embedded-opentype"),
url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.woff") format("woff"),
url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.ttf") format("truetype"),
url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.svg#font-linux") format("svg");
font-weight: normal;
font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "font-linux";
src: url("../fonts/font-linux_79a638a02ed2577cbd5404dc9cd8a485.svg#font-linux") format("svg");
}
}

[data-icon]:before { content: attr(data-icon); }

[data-icon]:before,
.fl-archlinux:before,
.fl-centos:before,
.fl-debian:before,
.fl-fedora:before,
.fl-linux-mint:before,
.fl-linux-mint-inverse:before,
.fl-mageia:before,
.fl-mandriva:before,
.fl-opensuse:before,
.fl-redhat:before,
.fl-ubuntu:before,
.fl-ubuntu-inverse:before {
display: inline-block;
font-family: "font-linux";
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-decoration: inherit;
text-rendering: optimizeLegibility;
text-transform: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}

.fl-archlinux:before { content: "\f112"; }
.fl-centos:before { content: "\f10d"; }
.fl-debian:before { content: "\f104"; }
.fl-fedora:before { content: "\f109"; }
.fl-linux-mint:before { content: "\f105"; }
.fl-linux-mint-inverse:before { content: "\f106"; }
.fl-mageia:before { content: "\f108"; }
.fl-mandriva:before { content: "\f10e"; }
.fl-opensuse:before { content: "\f110"; }
.fl-redhat:before { content: "\f10b"; }
.fl-ubuntu:before { content: "\f102"; }
.fl-ubuntu-inverse:before { content: "\f103"; }
46 changes: 46 additions & 0 deletions fontcustom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# --------------------------------------------------------------------------- #
# Project Info
# Defaults shown. Learn more about these options by running
# `fontcustom help` or visiting <http://fontcustom.com>.
# --------------------------------------------------------------------------- #

font_name: font-linux
css_selector: .fl-{{glyph}}
preprocessor_path: ""
autowidth: false
no_hash: false
force: false
debug: false
quiet: false


# --------------------------------------------------------------------------- #
# Input Paths
# --------------------------------------------------------------------------- #

input:
vectors: vectors # required


# --------------------------------------------------------------------------- #
# Output Paths
# --------------------------------------------------------------------------- #

output:
fonts: assets/fonts # required
css: assets/stylesheets
preview: views/styleguide
#my-custom-template.yml: path/to/template/output


# --------------------------------------------------------------------------- #
# Templates
# Included in Font Custom: preview, css, scss, scss-rails
# Custom templates should be saved in the INPUT[:templates] directory and
# referenced by their baserame.
# --------------------------------------------------------------------------- #

templates:
- css
- preview
#- my-custom-template.yml
159 changes: 159 additions & 0 deletions vectors/archlinux.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3e8feda

Please sign in to comment.