-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from softworkz/iconsfont
Add EmbyIcons font
- Loading branch information
Showing
10 changed files
with
473 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
body { | ||
padding: 0; | ||
margin: 0; | ||
font-family: sans-serif; | ||
font-size: 1em; | ||
line-height: 1.5; | ||
color: #555; | ||
background: #fff; | ||
} | ||
h1 { | ||
font-size: 1.5em; | ||
font-weight: normal; | ||
} | ||
small { | ||
font-size: .66666667em; | ||
} | ||
a { | ||
color: #e74c3c; | ||
text-decoration: none; | ||
} | ||
a:hover, a:focus { | ||
box-shadow: 0 1px #e74c3c; | ||
} | ||
.bshadow0, input { | ||
box-shadow: inset 0 -2px #e7e7e7; | ||
} | ||
input:hover { | ||
box-shadow: inset 0 -2px #ccc; | ||
} | ||
input, fieldset { | ||
font-family: sans-serif; | ||
font-size: 1em; | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
} | ||
input { | ||
color: inherit; | ||
line-height: 1.5; | ||
height: 1.5em; | ||
padding: .25em 0; | ||
} | ||
input:focus { | ||
outline: none; | ||
box-shadow: inset 0 -2px #449fdb; | ||
} | ||
.glyph { | ||
font-size: 16px; | ||
width: 18em; | ||
padding-bottom: 1em; | ||
margin-right: 4em; | ||
margin-bottom: 1em; | ||
/* float: left; */ | ||
overflow: hidden; | ||
} | ||
.liga { | ||
width: 80%; | ||
width: calc(100% - 2.5em); | ||
} | ||
.talign-right { | ||
text-align: right; | ||
} | ||
.talign-center { | ||
text-align: center; | ||
} | ||
.bgc1 { | ||
background: #f1f1f1; | ||
} | ||
.fgc1 { | ||
color: #999; | ||
} | ||
.fgc0 { | ||
color: #000; | ||
} | ||
p { | ||
margin-top: 1em; | ||
margin-bottom: 1em; | ||
} | ||
.mvm { | ||
margin-top: .75em; | ||
margin-bottom: .75em; | ||
} | ||
.mtn { | ||
margin-top: 0; | ||
} | ||
.mtl, .mal { | ||
margin-top: 1.5em; | ||
} | ||
.mbl, .mal { | ||
margin-bottom: 1.5em; | ||
} | ||
.mal, .mhl { | ||
margin-left: 1.5em; | ||
margin-right: 1.5em; | ||
} | ||
.mhmm { | ||
margin-left: 1em; | ||
margin-right: 1em; | ||
} | ||
.mls { | ||
margin-left: .25em; | ||
font-size: 22px; | ||
float: right; | ||
} | ||
.ptl { | ||
padding-top: 1.5em; | ||
} | ||
.pbs, .pvs { | ||
/* padding-bottom: .25em; */ | ||
} | ||
.pvs, .pts { | ||
padding-top: .25em; | ||
} | ||
.unit { | ||
float: left; | ||
} | ||
.unitRight { | ||
float: right; | ||
} | ||
.size1of2 { | ||
width: 50%; | ||
} | ||
.size1of1 { | ||
width: 100%; | ||
} | ||
.clearfix:before, .clearfix:after { | ||
content: " "; | ||
display: table; | ||
} | ||
.clearfix:after { | ||
clear: both; | ||
} | ||
.hidden-true { | ||
display: none; | ||
} | ||
.textbox0 { | ||
width: 3em; | ||
background: #f1f1f1; | ||
padding: .25em .5em; | ||
line-height: 1.5; | ||
height: 1.5em; | ||
} | ||
#testDrive { | ||
display: block; | ||
padding-top: 24px; | ||
line-height: 1.5; | ||
} | ||
.fs0 { | ||
font-size: 16px; | ||
} | ||
.fs1 { | ||
font-size: 32px; | ||
} | ||
|
||
|
||
|
||
i { | ||
vertical-align: top; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
if (!('boxShadow' in document.body.style)) { | ||
document.body.setAttribute('class', 'noBoxShadow'); | ||
} | ||
|
||
document.body.addEventListener("click", function(e) { | ||
var target = e.target; | ||
if (target.tagName === "INPUT" && | ||
target.getAttribute('class').indexOf('liga') === -1) { | ||
target.select(); | ||
} | ||
}); | ||
|
||
(function() { | ||
var fontSize = document.getElementById('fontSize'), | ||
testDrive = document.getElementById('testDrive'), | ||
testText = document.getElementById('testText'); | ||
function updateTest() { | ||
testDrive.innerHTML = testText.value || String.fromCharCode(160); | ||
if (window.icomoonLiga) { | ||
window.icomoonLiga(testDrive); | ||
} | ||
} | ||
function updateSize() { | ||
testDrive.style.fontSize = fontSize.value + 'px'; | ||
} | ||
fontSize.addEventListener('change', updateSize, false); | ||
testText.addEventListener('input', updateTest, false); | ||
testText.addEventListener('change', updateTest, false); | ||
updateSize(); | ||
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>IcoMoon Demo</title> | ||
<meta name="description" content="An Icon Font Generated By IcoMoon.io"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="demo-files/demo.css"> | ||
<link rel="stylesheet" href="style.css"></head> | ||
<body> | ||
<div class="bgc1 clearfix"> | ||
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> EmbyIcons <small class="fgc1">(Glyphs: 6)</small></h1> | ||
</div> | ||
<div class="clearfix mhl ptl"> | ||
<h1 class="mvm mtn fgc1">Grid Size: 32</h1> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-icon-mono"></i> | ||
<span class="mls"> embyicons-icon-mono</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="31" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="1" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="embyicon" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-text-mono"></i> | ||
<span class="mls"> embyicons-text-mono</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="32" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="2" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="embytext" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-icon-text-mono"></i> | ||
<span class="mls"> embyicons-icon-text-mono</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="33" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="3" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="embylogo" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-coloricon-darktext"><span class="path1"></span><span class="path2"></span><span class="path3"></span></i> | ||
<span class="mls"> embyicons-coloricon-darktext</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="e900" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-coloricon-lighttext"><span class="path1"></span><span class="path2"></span><span class="path3"></span></i> | ||
<span class="mls"> embyicons-coloricon-lighttext</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="e903" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
<div class="glyph fs1"> | ||
<div class="clearfix bshadow0 pbs"> | ||
<i class="embyicons-smallsize-icon-mono"></i> | ||
<span class="mls"> embyicons-smallsize-icon-mono</span> | ||
</div> | ||
<fieldset class="fs0 size1of1 clearfix hidden-false"> | ||
<input type="text" readonly value="34" class="unit size1of2" /> | ||
<input type="text" maxlength="1" readonly value="4" class="unitRight size1of2 talign-right" /> | ||
</fieldset> | ||
<div class="fs0 bshadow0 clearfix hidden-false"> | ||
<span class="unit pvs fgc1">liga: </span> | ||
<input type="text" readonly value="embyiconsmall" class="liga unitRight" /> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="mhl clearfix mbl"> | ||
<h1>Font Test Drive</h1> | ||
<label> | ||
Font Size: <input id="fontSize" type="number" class="textbox0 mbm" | ||
min="8" value="48" /> | ||
px | ||
</label> | ||
<input id="testText" type="text" class="phl size1of1 mvl" | ||
placeholder="Type some text to test..." value="embyicon embytext embylogo embyiconsmall"/> | ||
<div id="testDrive" class="icomoon-liga" style="font-family: EmbyIcons">embyicon embytext embylogo embyiconsmall | ||
</div> | ||
</div> | ||
|
||
<script src="demo-files/demo.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.