Skip to content

Commit b891a64

Browse files
authored
Merge pull request #52 from heroku/jw/iconography
incorporates Heroku Iconography and Theme Colors
2 parents 3aa6778 + 81f0d04 commit b891a64

37 files changed

+5195
-166
lines changed

package.json

+1,281
Large diffs are not rendered by default.

resources/app-28.png

-650 Bytes
Binary file not shown.

resources/dyno/dynomite-1x-16.png

-1.23 KB
Binary file not shown.

resources/dyno/dynomite-2x-16.png

-1.38 KB
Binary file not shown.

resources/dyno/dynomite-basic-16.png

-1.04 KB
Binary file not shown.
-1 KB
Binary file not shown.

resources/dyno/dynomite-eco-16.png

-1.14 KB
Binary file not shown.

resources/dyno/dynomite-free-16.png

-859 Bytes
Binary file not shown.

resources/dyno/dynomite-hobby-16.png

-835 Bytes
Binary file not shown.

resources/dyno/dynomite-pl-16.png

-1.03 KB
Binary file not shown.

resources/dyno/dynomite-pm-16.png

-1.25 KB
Binary file not shown.

resources/dyno/dynomite-ps-16.png

-1.39 KB
Binary file not shown.

resources/dyno/dynomite-px-16.png

-1.32 KB
Binary file not shown.
-1.35 KB
Binary file not shown.
-1.59 KB
Binary file not shown.
-1.71 KB
Binary file not shown.
-1.29 KB
Binary file not shown.
-1.53 KB
Binary file not shown.
-1.65 KB
Binary file not shown.

resources/elements-icon-60.png

-13.6 KB
Binary file not shown.

resources/formation-icon-16.png

-440 Bytes
Binary file not shown.
+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
body {
2+
padding: 0;
3+
margin: 0;
4+
font-family: sans-serif;
5+
font-size: 1em;
6+
line-height: 1.5;
7+
color: #555;
8+
background: #fff;
9+
}
10+
h1 {
11+
font-size: 1.5em;
12+
font-weight: normal;
13+
}
14+
small {
15+
font-size: 0.66666667em;
16+
}
17+
a {
18+
color: #e74c3c;
19+
text-decoration: none;
20+
}
21+
a:hover,
22+
a:focus {
23+
box-shadow: 0 1px #e74c3c;
24+
}
25+
.bshadow0,
26+
input {
27+
box-shadow: inset 0 -2px #e7e7e7;
28+
}
29+
input:hover {
30+
box-shadow: inset 0 -2px #ccc;
31+
}
32+
input,
33+
fieldset {
34+
font-family: sans-serif;
35+
font-size: 1em;
36+
margin: 0;
37+
padding: 0;
38+
border: 0;
39+
}
40+
input {
41+
color: inherit;
42+
line-height: 1.5;
43+
height: 1.5em;
44+
padding: 0.25em 0;
45+
}
46+
input:focus {
47+
outline: none;
48+
box-shadow: inset 0 -2px #449fdb;
49+
}
50+
.glyph {
51+
font-size: 16px;
52+
width: 15em;
53+
padding-bottom: 1em;
54+
margin-right: 4em;
55+
margin-bottom: 1em;
56+
float: left;
57+
overflow: hidden;
58+
}
59+
.liga {
60+
width: 80%;
61+
width: calc(100% - 2.5em);
62+
}
63+
.talign-right {
64+
text-align: right;
65+
}
66+
.talign-center {
67+
text-align: center;
68+
}
69+
.bgc1 {
70+
background: #f1f1f1;
71+
}
72+
.fgc1 {
73+
color: #999;
74+
}
75+
.fgc0 {
76+
color: #000;
77+
}
78+
p {
79+
margin-top: 1em;
80+
margin-bottom: 1em;
81+
}
82+
.mvm {
83+
margin-top: 0.75em;
84+
margin-bottom: 0.75em;
85+
}
86+
.mtn {
87+
margin-top: 0;
88+
}
89+
.mtl,
90+
.mal {
91+
margin-top: 1.5em;
92+
}
93+
.mbl,
94+
.mal {
95+
margin-bottom: 1.5em;
96+
}
97+
.mal,
98+
.mhl {
99+
margin-left: 1.5em;
100+
margin-right: 1.5em;
101+
}
102+
.mhmm {
103+
margin-left: 1em;
104+
margin-right: 1em;
105+
}
106+
.mls {
107+
margin-left: 0.25em;
108+
}
109+
.ptl {
110+
padding-top: 1.5em;
111+
}
112+
.pbs,
113+
.pvs {
114+
padding-bottom: 0.25em;
115+
}
116+
.pvs,
117+
.pts {
118+
padding-top: 0.25em;
119+
}
120+
.unit {
121+
float: left;
122+
}
123+
.unitRight {
124+
float: right;
125+
}
126+
.size1of2 {
127+
width: 50%;
128+
}
129+
.size1of1 {
130+
width: 100%;
131+
}
132+
.clearfix:before,
133+
.clearfix:after {
134+
content: ' ';
135+
display: table;
136+
}
137+
.clearfix:after {
138+
clear: both;
139+
}
140+
.hidden-true {
141+
display: none;
142+
}
143+
.textbox0 {
144+
width: 3em;
145+
background: #f1f1f1;
146+
padding: 0.25em 0.5em;
147+
line-height: 1.5;
148+
height: 1.5em;
149+
}
150+
#testDrive {
151+
display: block;
152+
padding-top: 24px;
153+
line-height: 1.5;
154+
}
155+
.fs0 {
156+
font-size: 16px;
157+
}
158+
.fs1 {
159+
font-size: 32px;
160+
}
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
if (!('boxShadow' in document.body.style)) {
2+
document.body.setAttribute('class', 'noBoxShadow');
3+
}
4+
5+
document.body.addEventListener('click', function (e) {
6+
var target = e.target;
7+
if (target.tagName === 'INPUT' && target.getAttribute('class').indexOf('liga') === -1) {
8+
target.select();
9+
}
10+
});
11+
12+
(function () {
13+
var fontSize = document.getElementById('fontSize'),
14+
testDrive = document.getElementById('testDrive'),
15+
testText = document.getElementById('testText');
16+
function updateTest() {
17+
testDrive.innerHTML = testText.value || String.fromCharCode(160);
18+
if (window.icomoonLiga) {
19+
window.icomoonLiga(testDrive);
20+
}
21+
}
22+
function updateSize() {
23+
testDrive.style.fontSize = fontSize.value + 'px';
24+
}
25+
fontSize.addEventListener('change', updateSize, false);
26+
testText.addEventListener('input', updateTest, false);
27+
testText.addEventListener('change', updateTest, false);
28+
updateSize();
29+
})();

0 commit comments

Comments
 (0)