webfontspecimen 0.2.0 → 0.3.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/stylesheets/wfs/_960.scss +14 -14
- data/stylesheets/wfs/_base.scss +135 -216
- data/templates/project/_specimen.scss +6 -37
- data/templates/project/black.gif +0 -0
- data/templates/project/grid.gif +0 -0
- data/templates/project/manifest.rb +2 -0
- data/templates/project/specimen.html +94 -180
- metadata +13 -9
data/stylesheets/wfs/_960.scss
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
/*
|
2
2
|
960 Grid System ~ Core CSS.
|
3
3
|
Learn more ~ http://960.gs/
|
4
|
-
|
4
|
+
|
5
5
|
Licensed under GPL and MIT.
|
6
|
-
|
6
|
+
*/
|
7
7
|
|
8
8
|
/* `Containers
|
9
|
-
|
9
|
+
----------------------------------------------------------------------------------------------------*/
|
10
10
|
|
11
11
|
.container_12,
|
12
12
|
.container_16 {
|
@@ -16,7 +16,7 @@
|
|
16
16
|
}
|
17
17
|
|
18
18
|
/* `Grid >> Global
|
19
|
-
|
19
|
+
----------------------------------------------------------------------------------------------------*/
|
20
20
|
|
21
21
|
.grid_1,
|
22
22
|
.grid_2,
|
@@ -61,7 +61,7 @@
|
|
61
61
|
}
|
62
62
|
|
63
63
|
/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
|
64
|
-
|
64
|
+
----------------------------------------------------------------------------------------------------*/
|
65
65
|
|
66
66
|
.alpha {
|
67
67
|
margin-left: 0;
|
@@ -72,7 +72,7 @@
|
|
72
72
|
}
|
73
73
|
|
74
74
|
/* `Grid >> 12 Columns
|
75
|
-
|
75
|
+
----------------------------------------------------------------------------------------------------*/
|
76
76
|
|
77
77
|
.container_12 .grid_1 {
|
78
78
|
width: 60px;
|
@@ -107,7 +107,7 @@
|
|
107
107
|
}
|
108
108
|
|
109
109
|
/* `Grid >> 16 Columns
|
110
|
-
|
110
|
+
----------------------------------------------------------------------------------------------------*/
|
111
111
|
|
112
112
|
.container_16 .grid_1 {
|
113
113
|
width: 40px;
|
@@ -158,7 +158,7 @@
|
|
158
158
|
}
|
159
159
|
|
160
160
|
/* `Prefix Extra Space >> Global
|
161
|
-
|
161
|
+
----------------------------------------------------------------------------------------------------*/
|
162
162
|
|
163
163
|
.container_12 .prefix_3,
|
164
164
|
.container_16 .prefix_4 {
|
@@ -176,7 +176,7 @@
|
|
176
176
|
}
|
177
177
|
|
178
178
|
/* `Prefix Extra Space >> 12 Columns
|
179
|
-
|
179
|
+
----------------------------------------------------------------------------------------------------*/
|
180
180
|
|
181
181
|
.container_12 .prefix_1 {
|
182
182
|
padding-left: 80px;
|
@@ -211,7 +211,7 @@
|
|
211
211
|
}
|
212
212
|
|
213
213
|
/* `Prefix Extra Space >> 16 Columns
|
214
|
-
|
214
|
+
----------------------------------------------------------------------------------------------------*/
|
215
215
|
|
216
216
|
.container_16 .prefix_1 {
|
217
217
|
padding-left: 60px;
|
@@ -262,7 +262,7 @@
|
|
262
262
|
}
|
263
263
|
|
264
264
|
/* `Suffix Extra Space >> Global
|
265
|
-
|
265
|
+
----------------------------------------------------------------------------------------------------*/
|
266
266
|
|
267
267
|
.container_12 .suffix_3,
|
268
268
|
.container_16 .suffix_4 {
|
@@ -280,7 +280,7 @@
|
|
280
280
|
}
|
281
281
|
|
282
282
|
/* `Suffix Extra Space >> 12 Columns
|
283
|
-
|
283
|
+
----------------------------------------------------------------------------------------------------*/
|
284
284
|
|
285
285
|
.container_12 .suffix_1 {
|
286
286
|
padding-right: 80px;
|
@@ -315,7 +315,7 @@
|
|
315
315
|
}
|
316
316
|
|
317
317
|
/* `Suffix Extra Space >> 16 Columns
|
318
|
-
|
318
|
+
----------------------------------------------------------------------------------------------------*/
|
319
319
|
|
320
320
|
.container_16 .suffix_1 {
|
321
321
|
padding-right: 60px;
|
@@ -366,7 +366,7 @@
|
|
366
366
|
}
|
367
367
|
|
368
368
|
/* `Clear Floated Elements
|
369
|
-
|
369
|
+
----------------------------------------------------------------------------------------------------*/
|
370
370
|
|
371
371
|
/* http://sonspring.com/journal/clearing-floats */
|
372
372
|
|
data/stylesheets/wfs/_base.scss
CHANGED
@@ -1,50 +1,18 @@
|
|
1
1
|
/* Fonts ----------------------------------------------- */
|
2
2
|
$font-type: serif !default;
|
3
|
+
$font-face: Georgia !default;
|
4
|
+
$font-stack: $font-face, $font-type !default;
|
3
5
|
|
4
|
-
|
5
|
-
|
6
|
-
$bold-font-face: $normal-font-face !default;
|
7
|
-
|
8
|
-
$normal-font-stack: $normal-font-face, $font-type !default;
|
9
|
-
$italic-font-stack: $italic-font-face, $font-type !default;
|
10
|
-
$bold-font-stack: $bold-font-face, $font-type !default;
|
11
|
-
|
12
|
-
@mixin normal {
|
13
|
-
font-family: $normal-font-stack;
|
6
|
+
@mixin font-stack {
|
7
|
+
font-family: $font-stack;
|
14
8
|
font-style: normal;
|
15
9
|
}
|
16
10
|
|
17
|
-
|
18
|
-
@
|
19
|
-
font-family: $italic-font-stack;
|
20
|
-
} @else {
|
21
|
-
font-style: italic;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
@mixin bold {
|
26
|
-
@if $bold-font-face != $normal-font-face {
|
27
|
-
font-family: $bold-font-stack;
|
28
|
-
} @else {
|
29
|
-
font-weight: bold;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
|
33
|
-
/* Font Specimen ----------------------------------------------- */
|
34
|
-
body, .typeface1 {
|
35
|
-
@include normal; }
|
36
|
-
|
37
|
-
.typeface2 {
|
38
|
-
font-family: Verdana; }
|
39
|
-
|
40
|
-
em {
|
41
|
-
@include italic; }
|
42
|
-
|
43
|
-
strong {
|
44
|
-
@include bold; }
|
11
|
+
body {
|
12
|
+
@include font-stack; }
|
45
13
|
|
46
14
|
/* General
|
47
|
-
|
15
|
+
----------------------------------------------- */
|
48
16
|
body {
|
49
17
|
margin: 0 0 72px;
|
50
18
|
font-size: 13px;
|
@@ -57,78 +25,37 @@ body {
|
|
57
25
|
padding-bottom: 36px;
|
58
26
|
}
|
59
27
|
#header {
|
60
|
-
padding-top:
|
28
|
+
padding-top: 12px;
|
61
29
|
border-top: 16px #ddddd2 solid;
|
62
30
|
}
|
63
|
-
.dim {
|
64
|
-
background-color: #ddddd2;
|
65
|
-
color: #333;
|
66
|
-
}
|
67
|
-
.dim .container_16 { background-color: #fcfcf3; }
|
68
|
-
.dim, .dim .upp { text-align: center; }
|
69
|
-
|
70
|
-
.dark {
|
71
|
-
background-color: #111112;
|
72
|
-
color: #fff;
|
73
|
-
}
|
74
|
-
.dark .container_16 { background-color: #000; }
|
75
|
-
|
76
31
|
#footer {
|
77
32
|
padding-bottom: 36px;
|
78
33
|
border-top: 24px #ddddd2 solid;
|
79
|
-
font: 13px/21px Verdana;
|
34
|
+
font: 13px/21px Verdana, sans-serif;
|
80
35
|
color: #888882;
|
81
36
|
}
|
82
37
|
#footer span { margin: 0; }
|
83
38
|
|
84
39
|
|
85
|
-
/*
|
86
|
-
|
40
|
+
/* Headings & labels
|
41
|
+
----------------------------------------------- */
|
87
42
|
h1 {
|
88
|
-
font
|
89
|
-
line-height: 96px;
|
43
|
+
font: 36px/48px Verdana;
|
90
44
|
font-weight: normal;
|
91
|
-
border-bottom: 2px #eeeee2 solid;
|
92
45
|
}
|
93
46
|
h2 {
|
94
47
|
font: normal 13px/18px Verdana, sans-serif;
|
95
48
|
color: #c00;
|
96
49
|
}
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
}
|
102
|
-
h4 {
|
103
|
-
font-weight: normal;
|
104
|
-
text-transform: uppercase;
|
105
|
-
letter-spacing: 1px;
|
106
|
-
}
|
107
|
-
h5 + p { margin-top: 0; }
|
108
|
-
h2, p, ul, ol { margin: 18px 0; }
|
109
|
-
ul {
|
110
|
-
list-style-type: square;
|
111
|
-
margin-left: 28px;
|
112
|
-
}
|
113
|
-
ol {
|
114
|
-
list-style-type: decimal;
|
115
|
-
margin-left: 28px;
|
116
|
-
}
|
117
|
-
.dropcap:first-letter {
|
118
|
-
float: left;
|
119
|
-
margin: 0 10px 4px 0;
|
120
|
-
font-size: 48px;
|
121
|
-
line-height: 48px;
|
122
|
-
font-variant: normal;
|
123
|
-
}
|
124
|
-
.dropcap:first-line {
|
125
|
-
font-variant: small-caps;
|
126
|
-
letter-spacing: 1px;
|
50
|
+
h2, p { margin: 18px 0; }
|
51
|
+
|
52
|
+
span {
|
53
|
+
color: #999;
|
127
54
|
}
|
128
55
|
|
129
56
|
|
130
57
|
/* Links
|
131
|
-
|
58
|
+
-----------------------------------------*/
|
132
59
|
a {
|
133
60
|
text-decoration: none;
|
134
61
|
padding: 3px 0;
|
@@ -147,59 +74,11 @@ a:active {
|
|
147
74
|
}
|
148
75
|
|
149
76
|
|
150
|
-
/*
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
line-height: 96px;
|
155
|
-
color: #ddd;
|
156
|
-
text-decoration: underline;
|
157
|
-
}
|
158
|
-
.char-compare .typeface1 {
|
159
|
-
margin-right: 0;
|
160
|
-
color: #333;
|
161
|
-
border-bottom: 1px #999 solid;
|
162
|
-
border-top: 1px #999 solid;
|
163
|
-
}
|
164
|
-
.char-compare .typeface2 {
|
165
|
-
color: #333;
|
166
|
-
background-color: #eeeee2;
|
167
|
-
border-bottom: 1px #999 solid;
|
168
|
-
border-top: 1px #999 solid;
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
/* Leading
|
173
|
-
-----------------------------------------*/
|
174
|
-
.l-less { line-height: 16px; }
|
175
|
-
.l-mid { line-height: 18px; }
|
176
|
-
.l-more { line-height: 21px; }
|
177
|
-
.l-most { line-height: 24px; }
|
178
|
-
|
179
|
-
|
180
|
-
/* Measure
|
181
|
-
-----------------------------------------*/
|
182
|
-
.m-widest { width: 900px; }
|
183
|
-
.m-wide { width: 700px; }
|
184
|
-
.m-mid { width: 450px; }
|
185
|
-
.m-narrow { width: 300px; }
|
186
|
-
|
187
|
-
.small {
|
188
|
-
font-size: 11px;
|
189
|
-
line-height: 14px;
|
190
|
-
}
|
191
|
-
.small .m-mid { width: 350px; }
|
192
|
-
.small .m-narrow { width: 250px; }
|
193
|
-
.small .m-mini {
|
194
|
-
font-size: 9px;
|
195
|
-
line-height: 13px;
|
196
|
-
width: 200px;
|
197
|
-
}
|
198
|
-
|
77
|
+
/* Text sample, reusable sizes
|
78
|
+
-----------------------------------------*/
|
79
|
+
.s { line-height: 1.4em; }
|
80
|
+
.ls { letter-spacing: 0.05em; }
|
199
81
|
|
200
|
-
/* Size
|
201
|
-
-----------------------------------------*/
|
202
|
-
.s { line-height: 1.5em; }
|
203
82
|
.s9 { font-size: 9px; }
|
204
83
|
.s10 { font-size: 10px; }
|
205
84
|
.s11 { font-size: 11px; }
|
@@ -212,43 +91,112 @@ p.char-compare {
|
|
212
91
|
.s24 { font-size: 24px; }
|
213
92
|
.s30 { font-size: 30px; }
|
214
93
|
.s36 { font-size: 36px; }
|
215
|
-
.s42 { font-size: 42px;
|
216
|
-
.
|
217
|
-
.
|
94
|
+
.s42 { font-size: 42px; }
|
95
|
+
.s50 { font-size: 50px; }
|
96
|
+
.s56 { font-size: 56px; }
|
97
|
+
.s60 { font-size: 60px; }
|
98
|
+
.s96 { font-size: 96px; }
|
218
99
|
|
219
|
-
.container_16 span {
|
220
|
-
margin-right: 6px;
|
221
|
-
color: #999;
|
222
|
-
}
|
223
100
|
.s span {
|
224
101
|
display: block;
|
225
102
|
float: left;
|
226
103
|
width: 80px;
|
227
104
|
margin-left: -96px;
|
228
105
|
margin-right: 0;
|
106
|
+
font-size: 13px;
|
107
|
+
font-family: Verdana, sans-serif;
|
229
108
|
text-align: right;
|
109
|
+
}
|
110
|
+
|
111
|
+
|
112
|
+
/* Characters
|
113
|
+
-----------------------------------------*/
|
114
|
+
.charset .s {
|
115
|
+
margin: 10px 0;
|
116
|
+
line-height: 1.1em;
|
117
|
+
}
|
118
|
+
|
119
|
+
|
120
|
+
/* Body size comparison
|
121
|
+
-----------------------------------------*/
|
122
|
+
.bodysize {
|
123
|
+
overflow: hidden;
|
124
|
+
background: #fff image-url("grid.gif") -5px 9px repeat;
|
125
|
+
}
|
126
|
+
.bodysize table {
|
127
|
+
width: 100%;
|
128
|
+
font-size: 90px;
|
129
|
+
line-height: 140px;
|
130
|
+
}
|
131
|
+
.bodysize table th {
|
132
|
+
padding: 0 0 6px 12px;
|
133
|
+
border-bottom: 1px #eeeee2 solid;
|
134
|
+
font: normal 13px Verdana, sans-serif;
|
135
|
+
text-align: left;
|
136
|
+
color: #333;
|
137
|
+
background-color: #fff;
|
138
|
+
}
|
139
|
+
.bodysize a { padding-bottom: 1px; }
|
140
|
+
.bodysize a:link,
|
141
|
+
.bodysize a:visited {
|
230
142
|
color: #999;
|
143
|
+
background-color: transparent;
|
144
|
+
}
|
145
|
+
.bodysize a:hover {
|
146
|
+
color: #c00;
|
147
|
+
background-color: transparent;
|
148
|
+
}
|
149
|
+
.bodysize a:active {
|
150
|
+
color: #fff;
|
151
|
+
background-color: #000;
|
231
152
|
}
|
232
153
|
|
154
|
+
.bodysize table td {
|
155
|
+
xbackground-color: #e2e2d9;
|
156
|
+
xborder: 3px #fff solid;
|
157
|
+
padding: 6px;
|
158
|
+
}
|
159
|
+
.bodysize table td span {
|
160
|
+
margin: 0;
|
161
|
+
padding: 0;
|
162
|
+
color: #333;
|
163
|
+
background-color: transparent;
|
164
|
+
}
|
165
|
+
.bodysize table td span:hover {
|
166
|
+
background-color: rgba(255,255,200,0.2);
|
167
|
+
border-top: 1px #c00 solid;
|
168
|
+
border-bottom: 1px #c00 solid;
|
169
|
+
}
|
170
|
+
.bodysize .typeface2 { font-family: Arial, Helvetica, sans-serif; }
|
171
|
+
.bodysize .typeface3 { font-family: "Times New Roman", Times, serif; }
|
172
|
+
.bodysize .typeface4 { font-family: Georgia, "New Century Schoolbook", "Nimbus Roman No9 L", serif; }
|
233
173
|
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
174
|
+
|
175
|
+
/* Grayscale
|
176
|
+
-----------------------------------------*/
|
177
|
+
.grayscale {
|
178
|
+
clear: both;
|
179
|
+
background: #fff image-url("black.gif") top right repeat-y;
|
240
180
|
}
|
241
|
-
.
|
181
|
+
.grayscale p span {
|
242
182
|
display: block;
|
243
|
-
float: right;
|
244
183
|
width: 80px;
|
184
|
+
font-size: 13px;
|
185
|
+
font-family: Verdana, sans-serif;
|
186
|
+
color: #999;
|
187
|
+
}
|
188
|
+
.white p span {
|
189
|
+
float: left;
|
190
|
+
margin-left: -96px;
|
191
|
+
margin-right: 0;
|
192
|
+
text-align: right;
|
193
|
+
}
|
194
|
+
.black p span {
|
195
|
+
float: right;
|
196
|
+
margin-left: 0;
|
245
197
|
margin-right: -96px;
|
246
198
|
text-align: left;
|
247
199
|
}
|
248
|
-
|
249
|
-
|
250
|
-
/* Grayscale
|
251
|
-
-----------------------------------------*/
|
252
200
|
.c000 { color: #000; }
|
253
201
|
.c333 { color: #333; }
|
254
202
|
.c666 { color: #666; }
|
@@ -257,61 +205,32 @@ p.char-compare {
|
|
257
205
|
.cFFF { color: #fff; }
|
258
206
|
|
259
207
|
|
260
|
-
/*
|
261
|
-
|
262
|
-
.
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
color: #fff;
|
274
|
-
background-color: #000;
|
275
|
-
border-color: #000;
|
276
|
-
}
|
277
|
-
.cfff-000 h2 { color: #c00; }
|
278
|
-
.cf00-fff {
|
279
|
-
color: #f00;
|
280
|
-
background-color: #fff;
|
281
|
-
}
|
282
|
-
.cf00-000 {
|
283
|
-
color: #f00;
|
284
|
-
background-color: #000;
|
285
|
-
border-color: #000;
|
286
|
-
}
|
287
|
-
.cf00-000 h2 { color: #eee; }
|
288
|
-
.c0ff-fff {
|
289
|
-
color: #0ff;
|
290
|
-
background-color: #fff;
|
291
|
-
}
|
292
|
-
.c0ff-000 {
|
293
|
-
color: #0ff;
|
294
|
-
background-color: #000;
|
295
|
-
border-color: #000;
|
296
|
-
}
|
297
|
-
.c0ff-000 h2 { color: #eee; }
|
298
|
-
.cfff-f00 {
|
299
|
-
color: #fff;
|
300
|
-
background-color: #f00;
|
301
|
-
border-color: #f00;
|
302
|
-
}
|
303
|
-
.c000-f00 {
|
304
|
-
color: #000;
|
305
|
-
background-color: #f00;
|
306
|
-
border-color: #f00;
|
208
|
+
/* Size
|
209
|
+
-----------------------------------------*/
|
210
|
+
.ulc p span.text {
|
211
|
+
white-space: nowrap;
|
212
|
+
overflow: hidden;
|
213
|
+
display: static;
|
214
|
+
float: none;
|
215
|
+
width: auto;
|
216
|
+
margin: 0;
|
217
|
+
font-size: inherit;
|
218
|
+
font-family: inherit;
|
219
|
+
text-align: left;
|
220
|
+
color: #333;
|
307
221
|
}
|
308
|
-
.
|
309
|
-
|
310
|
-
|
311
|
-
|
222
|
+
.ulc .upp p span.text {
|
223
|
+
text-align: right;
|
224
|
+
text-transform: uppercase;
|
225
|
+
letter-spacing: 1px;
|
312
226
|
}
|
313
|
-
.
|
314
|
-
|
315
|
-
|
316
|
-
|
227
|
+
.upp span {
|
228
|
+
display: block;
|
229
|
+
float: right;
|
230
|
+
width: 80px;
|
231
|
+
margin-right: -96px;
|
232
|
+
text-align: left;
|
317
233
|
}
|
234
|
+
p.upp {
|
235
|
+
text-align: left;
|
236
|
+
}
|
@@ -12,13 +12,13 @@
|
|
12
12
|
//
|
13
13
|
// 1. Add your typeface(s) to your specified "fonts" folder.
|
14
14
|
// - This is specified as "fonts_dir" in your "config.rb" file.
|
15
|
+
// - Or link to fonts from google, typkit, or other services
|
15
16
|
//
|
16
17
|
// 2. Rename this file:
|
17
18
|
// - For single specimens simply remove the "_" prefix
|
18
19
|
// - For multiple specimens duplicate and rename for each font
|
19
20
|
//
|
20
|
-
// 3. Include
|
21
|
-
// Or comment out any faces that you aren't using.
|
21
|
+
// 3. Include your font below
|
22
22
|
//
|
23
23
|
// 4. Make adjustments to "specimen.html"
|
24
24
|
// - For multiple specimens duplicate and rename for each font
|
@@ -33,49 +33,18 @@
|
|
33
33
|
$font-type: serif;
|
34
34
|
|
35
35
|
/* Standard ----------------------------------*/
|
36
|
-
$
|
36
|
+
$font-face: "Name Your Font";
|
37
37
|
@include font-face(
|
38
|
-
$
|
38
|
+
$font-face,
|
39
39
|
font-files(
|
40
40
|
"type_file.woff", woff,
|
41
41
|
"type_file.ttf", truetype,
|
42
42
|
"type_file.svg#Type-Name", svg
|
43
43
|
),
|
44
|
-
"type_file.eot"
|
45
|
-
postscriptname
|
44
|
+
"type_file.eot"
|
46
45
|
);
|
47
46
|
|
48
|
-
$
|
49
|
-
|
50
|
-
/* Italic ----------------------------------*/
|
51
|
-
$italic-font-face: "Name Your Italic Font";
|
52
|
-
@include font-face(
|
53
|
-
$italic-font-face,
|
54
|
-
font-files(
|
55
|
-
"type_file.woff", woff,
|
56
|
-
"type_file.ttf", truetype,
|
57
|
-
"type_file.svg#Type-Name", svg
|
58
|
-
),
|
59
|
-
"type_file.eot",
|
60
|
-
postscriptname
|
61
|
-
);
|
62
|
-
|
63
|
-
$italic-font-stack: $italic-font-face, $font-type;
|
64
|
-
|
65
|
-
/* Bold ----------------------------------*/
|
66
|
-
$bold-font-face: "Name Your Bold Font";
|
67
|
-
@include font-face(
|
68
|
-
"Your bold typeface",
|
69
|
-
font-files(
|
70
|
-
"type_file.woff", woff,
|
71
|
-
"type_file.ttf", truetype,
|
72
|
-
"type_file.svg#Type-Name", svg
|
73
|
-
),
|
74
|
-
"type_file.eot",
|
75
|
-
postscriptname
|
76
|
-
);
|
77
|
-
|
78
|
-
$bold-font-stack: $bold-font-face, $font-type;
|
47
|
+
$font-stack: $font-face, $font-type;
|
79
48
|
|
80
49
|
// Import WebFontSpecimen -------------------------------------------*/
|
81
50
|
// Leave this below your font settings
|
Binary file
|
Binary file
|
@@ -1,6 +1,7 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en" dir="ltr">
|
3
3
|
<head>
|
4
|
+
<meta charset="utf-8" />
|
4
5
|
|
5
6
|
<!--
|
6
7
|
|
@@ -9,13 +10,13 @@
|
|
9
10
|
|
10
11
|
1. Add your typeface(s) to your specified "fonts" folder.
|
11
12
|
- This is specified as "fonts_dir" in your "config.rb" file.
|
13
|
+
- Or link to fonts from google, typkit, or other services
|
12
14
|
|
13
15
|
2. Rename the "_specimen" sass file:
|
14
16
|
- For single specimens simply remove the "_" prefix
|
15
17
|
- For multiple specimens duplicate and rename for each font
|
16
18
|
|
17
|
-
3. Include
|
18
|
-
Or comment out any faces that you aren't using.
|
19
|
+
3. Include your font in the provided specimen.scss "font-face" mixin
|
19
20
|
|
20
21
|
4. Make adjustments to this file
|
21
22
|
- For multiple specimens duplicate and rename for each font
|
@@ -27,9 +28,12 @@
|
|
27
28
|
==============================================================================
|
28
29
|
|
29
30
|
-->
|
31
|
+
|
32
|
+
<!-- http://www.phpied.com/conditional-comments-block-downloads/ -->
|
33
|
+
<!--[if IE]><![endif]-->
|
30
34
|
|
31
|
-
|
32
|
-
|
35
|
+
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
|
36
|
+
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1"><![endif]-->
|
33
37
|
|
34
38
|
<title>{FONT NAME} - Web Font Specimen</title>
|
35
39
|
<link rel="stylesheet" href="css/specimen.css" type="text/css" media="screen" charset="utf-8">
|
@@ -47,215 +51,124 @@
|
|
47
51
|
</div>
|
48
52
|
|
49
53
|
|
50
|
-
<!--
|
54
|
+
<!-- TEXT SAMPLE -->
|
51
55
|
<div class="grid_8">
|
52
|
-
<h2>
|
53
|
-
<p>
|
54
|
-
<
|
55
|
-
<p>
|
56
|
-
<
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
</ul>
|
62
|
-
<ol>
|
63
|
-
<li>Duis aute irure dolor in reprehenderit</li>
|
64
|
-
<li>in <em>voluptate velit esse cillum</em> dolore eu fugiat nulla pariatur</li>
|
65
|
-
<li>Excepteur sint occaecat cupidatat non proident</li>
|
66
|
-
<li>sunt in culpa qui officia deserunt mollit anim id est laborum.</li>
|
67
|
-
</ol>
|
68
|
-
<h4>Consectetur <em>adipisicing</em> elit <strong>voluptate</strong></h4>
|
69
|
-
<p>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
70
|
-
<p class="dropcap">The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to discard knowledge of what has gone before or what is now going on in his own trade and profession. If the printers of today do not wish to be esteemed arrogant when they term this calling of theirs an art, they must be willing, and show that they are willing, to subject it to such laws as have made its</p>
|
71
|
-
<p><em>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</em></p>
|
72
|
-
<h5>Sed do <em>eiusmod</em> tempor <strong>incididunt</strong></h5>
|
73
|
-
<p>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
56
|
+
<h2>Text sample <span>– CSS font-size (px) with 1.4em line-height</span></h2>
|
57
|
+
<p class="s s18"><span>18</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent”…</p>
|
58
|
+
<p class="s s16"><span>16</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive…</p>
|
59
|
+
<p class="s s14"><span>14</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of…</p>
|
60
|
+
<p class="s s13"><span>13</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of an able mind. For, let…</p>
|
61
|
+
<p class="s s12"><span>12</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of an able mind. For, let a man be as able & original…</p>
|
62
|
+
<p class="s s11"><span>11</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of an able mind. For, let a man be as able & original as he may…</p>
|
63
|
+
<p class="s s10"><span>10</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of an able mind. For, let a man be as able & original as he may, he can’t afford to discard knowledge of what…</p>
|
64
|
+
<p class="s s9"><span>9</span> Is not the best kind of originality that which comes after a sound apprenticeship? That which shall prove to be the blending of a firm conception of, “useful precedent” and the progressive tendencies of an able mind. For, let a man be as able & original as he may, he can’t afford to discard knowledge of what has gone before or what is now going…</p>
|
74
65
|
</div>
|
75
66
|
|
76
67
|
|
77
|
-
<!--
|
78
|
-
<div class="grid_8">
|
79
|
-
<h2>
|
80
|
-
<p class="
|
81
|
-
|
82
|
-
|
83
|
-
<span class="typeface1">c</span><span class="typeface2">c</span><br />
|
84
|
-
<span class="typeface1">e</span><span class="typeface2">e</span>
|
85
|
-
<span class="typeface1">f</span><span class="typeface2">f</span>
|
86
|
-
<span class="typeface1">g</span><span class="typeface2">g</span><br />
|
87
|
-
<span class="typeface1">n</span><span class="typeface2">n</span>
|
88
|
-
<span class="typeface1">o</span><span class="typeface2">o</span>
|
89
|
-
<span class="typeface1">t</span><span class="typeface2">t</span><br />
|
90
|
-
<span class="typeface1">A</span><span class="typeface2">A</span>
|
91
|
-
<span class="typeface1">O</span><span class="typeface2">O</span>
|
92
|
-
<span class="typeface1">R</span><span class="typeface2">R</span>
|
93
|
-
</p>
|
94
|
-
</div>
|
95
|
-
|
96
|
-
|
97
|
-
<!-- LEADING -->
|
98
|
-
<div class="grid_8">
|
99
|
-
<h2>Leading <span>– CSS font-size/line-height (px)</span></h2>
|
100
|
-
<p class="l-less"><span>13/16</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
101
|
-
<p class="l-mid"><span>13/18</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
102
|
-
<p class="l-more"><span>13/21</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
103
|
-
<p class="l-most"><span>13/24</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
104
|
-
</div><div class="clearfix"></div>
|
105
|
-
</div><!-- end .container-16 -->
|
106
|
-
|
107
|
-
|
108
|
-
<!-- ALPHABET -->
|
109
|
-
<div class="dim">
|
110
|
-
<div class="container_16 clearfix">
|
111
|
-
<div class="grid_16 center">
|
112
|
-
<h2>· 42px ·</h2>
|
113
|
-
<p class="s42">The best kind of originality is that which comes after a sound apprenticeship, that which shall</p>
|
114
|
-
<p class="s42"><em>The best kind of originality is that which comes after a sound apprenticeship, that which shall</em></p>
|
115
|
-
<p class="s42 upp ls">abcdefghijklmnopqrstuvwxyz</p>
|
116
|
-
<p class="s42">abcdefghijklmnopqrstuvwxyz</p>
|
117
|
-
<p class="s42 ls">$ & § 1234567890-.,:;—“”?!</p>
|
68
|
+
<!-- CHARACTER SET -->
|
69
|
+
<div class="grid_8 charset">
|
70
|
+
<h2>Characters</h2>
|
71
|
+
<p class="s s56">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z<br />
|
72
|
+
a b c d e f g h i j k l m n o p q r s t u v w x y z<br />
|
73
|
+
1 2 3 4 5 6 7 8 9 0 & @ . , ? ! ’ “ ” ( )</p>
|
118
74
|
</div>
|
119
75
|
</div><!-- end .container_16 -->
|
120
|
-
</div><!-- end .dim -->
|
121
76
|
|
122
77
|
|
123
|
-
<!--
|
78
|
+
<!-- BODY SIZE COMPARISON -->
|
124
79
|
<div class="container_16 clearfix">
|
125
80
|
<div class="grid_16">
|
126
|
-
<h2>
|
127
|
-
|
128
|
-
<
|
129
|
-
|
130
|
-
<
|
131
|
-
|
132
|
-
|
133
|
-
</
|
134
|
-
<
|
135
|
-
|
136
|
-
|
137
|
-
|
81
|
+
<h2>Body size comparison</h2>
|
82
|
+
|
83
|
+
<div class="bodysize">
|
84
|
+
<table>
|
85
|
+
<tr>
|
86
|
+
<th>{FONT NAME}</th>
|
87
|
+
<th>Arial <a href="http://www.codestyle.org/servlets/FontStack?stack=Arial,Helvetica&generic=sans-serif">stack</a></th>
|
88
|
+
<th>Times <a href="http://www.codestyle.org/servlets/FontStack?stack=Times+New+Roman,Times&generic=serif">stack</a></th>
|
89
|
+
<th>Georgia <a href="http://www.codestyle.org/servlets/FontStack?stack=Georgia,New+Century+Schoolbook,Nimbus+Roman+No9+L&generic=serif">stack</a></th>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td><span>Body</span></td>
|
93
|
+
<td class="tf typeface2"><span>Body</span></td>
|
94
|
+
<td class="tf typeface3"><span>Body</span></td>
|
95
|
+
<td class="tf typeface4"><span>Body</span></td>
|
96
|
+
</tr>
|
97
|
+
</table>
|
98
|
+
</div><!-- end .bodysize -->
|
99
|
+
|
138
100
|
</div>
|
101
|
+
</div><!-- end .container-16 -->
|
139
102
|
|
140
103
|
|
141
|
-
<!--
|
142
|
-
<div class="grid_16">
|
143
|
-
<h2>Size <span>– CSS font-size (px)</span></h2>
|
144
|
-
<p class="s s36"><span>36</span> Pack my box with five dozen liquor jugs.</p>
|
145
|
-
<p class="s s30"><span>30</span> Pack my box with five dozen liquor jugs.</p>
|
146
|
-
<p class="s s24"><span>24</span> Pack my box with five dozen liquor jugs.</p>
|
147
|
-
</div><div class="clearfix"></div>
|
148
|
-
<div class="grid_10">
|
149
|
-
<p class="s s21"><span>21</span> Pack my box with five dozen liquor jugs.</p>
|
150
|
-
<p class="s s18"><span>18</span> Pack my box with five dozen liquor jugs.</p>
|
151
|
-
</div>
|
152
|
-
<div class="grid_6 upp">
|
153
|
-
<p class="s s9"><span>9</span> Pack my box with five dozen liquor jugs.</p>
|
154
|
-
<p class="s s10"><span>10</span> Pack my box with five dozen liquor jugs.</p>
|
155
|
-
</div><div class="clearfix"></div>
|
156
|
-
<div class="grid_8">
|
157
|
-
<p class="s s16"><span>16</span> Pack my box with five dozen liquor jugs.</p>
|
158
|
-
<p class="s s14"><span>14</span> Pack my box with five dozen liquor jugs.</p>
|
159
|
-
<p class="s s13"><span>13</span> Pack my box with five dozen liquor jugs.</p>
|
160
|
-
</div>
|
161
|
-
<div class="grid_8 upp">
|
162
|
-
<p class="s s11"><span>11</span> Pack my box with five dozen liquor jugs.</p>
|
163
|
-
<p class="s s12"><span>12</span> Pack my box with five dozen liquor jugs.</p>
|
164
|
-
<p class="s s13"><span>13</span> Pack my box with five dozen liquor jugs.</p>
|
165
|
-
</div><div class="clearfix"></div>
|
166
|
-
<div class="grid_6">
|
167
|
-
<p class="s s12"><span>12</span> Pack my box with five dozen liquor jugs.</p>
|
168
|
-
<p class="s s11"><span>11</span> Pack my box with five dozen liquor jugs.</p>
|
169
|
-
<p class="s s10"><span>10</span> Pack my box with five dozen liquor jugs.</p>
|
170
|
-
<p class="s s9"><span>9</span> Pack my box with five dozen liquor jugs.</p>
|
171
|
-
</div>
|
172
|
-
<div class="grid_10 upp">
|
173
|
-
<p class="s s14"><span>14</span> Pack my box with five dozen liquor jugs.</p>
|
174
|
-
<p class="s s16"><span>16</span> Pack my box with five dozen liquor jugs.</p>
|
175
|
-
<p class="s s18"><span>18</span> Pack my box with five dozen liquor jugs.</p>
|
176
|
-
</div><div class="clearfix"></div>
|
177
|
-
<div class="grid_16 upp">
|
178
|
-
<p class="s s21"><span>21</span> Pack my box with five dozen liquor jugs.</p>
|
179
|
-
<p class="s s24"><span>24</span> Pack my box with five dozen liquor jugs.</p>
|
180
|
-
</div>
|
104
|
+
<!-- GRAYSCALE -->
|
181
105
|
|
106
|
+
<div class="container_16 clearfix">
|
107
|
+
<div class="grid_16 clearfix">
|
108
|
+
<h2>Grayscale <span>– CSS hex color</span></h2>
|
109
|
+
</div>
|
182
110
|
|
183
|
-
|
184
|
-
<div class="grid_8">
|
185
|
-
<h2>Grayscale <span>– CSS color (shorthand hexadecimal)</span></h2>
|
111
|
+
<div class="grayscale clearfix">
|
112
|
+
<div class="grid_8 white">
|
186
113
|
<p class="c000"><span>#000</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
187
114
|
<p class="c333"><span>#333</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
188
115
|
<p class="c666"><span>#666</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
189
116
|
<p class="c999"><span>#999</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
190
117
|
<p class="cCCC"><span>#CCC</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
191
118
|
</div>
|
192
|
-
<div class="grid_8">
|
193
|
-
<div class="c000-fff">
|
194
|
-
<h2>Color <span>– CSS color (shorthand hexadecimal)</span></h2>
|
195
|
-
<p><span>#000</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
196
|
-
</div>
|
197
|
-
<div class="cf00-fff">
|
198
|
-
<p><span>#F00</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
199
|
-
</div>
|
200
|
-
<div class="c0ff-fff">
|
201
|
-
<p><span>#0FF</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
202
|
-
</div>
|
203
|
-
</div>
|
204
|
-
</div><!-- end .container_16 -->
|
205
|
-
|
206
119
|
|
207
|
-
|
208
|
-
<
|
209
|
-
<div class="container_16 clearfix">
|
210
|
-
<div class="grid_8">
|
211
|
-
<h2>Grayscale <span>– CSS color (shorthand hexadecimal)</span></h2>
|
212
|
-
<p class="cfff"><span>#FFF</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
120
|
+
<div class="grid_8 black">
|
121
|
+
<p class="cFFF"><span>#FFF</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
213
122
|
<p class="cCCC"><span>#CCC</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
214
123
|
<p class="c999"><span>#999</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
215
124
|
<p class="c666"><span>#666</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
216
125
|
<p class="c333"><span>#333</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
217
126
|
</div>
|
218
|
-
|
219
|
-
|
220
|
-
<h2>Color <span>– CSS color (shorthand hexadecimal)</span></h2>
|
221
|
-
<p><span>#FFF</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
222
|
-
</div>
|
223
|
-
<div class="c0ff-000">
|
224
|
-
<p><span>#0FF</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
225
|
-
</div>
|
226
|
-
<div class="cf00-000">
|
227
|
-
<p><span>#F00</span>The best kind of originality is that which comes after a sound apprenticeship, that which shall prove to be the blending of a firm conception of useful precedent and the progressive tendencies of an able mind. For, let a man be as able and original as he may, he cannot afford to</p>
|
228
|
-
</div>
|
229
|
-
</div>
|
230
|
-
</div><!-- end .container_16 -->
|
231
|
-
</div><!-- end .dark -->
|
127
|
+
</div><!-- end .grayscale -->
|
128
|
+
</div><!-- end .container-16 -->
|
232
129
|
|
233
130
|
|
234
|
-
<!--
|
235
|
-
<div class="container_16 clearfix">
|
236
|
-
<div class="
|
237
|
-
<
|
238
|
-
|
239
|
-
|
240
|
-
</
|
131
|
+
<!-- SIZE U&LC -->
|
132
|
+
<div class="container_16 ulc clearfix">
|
133
|
+
<div class="grid_16">
|
134
|
+
<h2>Size <span>– CSS font-size (px)</span></h2>
|
135
|
+
<p class="s s36"><span>36</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
136
|
+
<p class="s s30"><span>30</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
137
|
+
<p class="s s24"><span>24</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
138
|
+
</div><div class="clearfix"></div>
|
139
|
+
<div class="grid_10">
|
140
|
+
<p class="s s21"><span>21</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
141
|
+
<p class="s s18"><span>18</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
241
142
|
</div>
|
143
|
+
<div class="grid_6 upp">
|
144
|
+
<p class="s s9"><span>9</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
145
|
+
<p class="s s10"><span>10</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
146
|
+
</div><div class="clearfix"></div>
|
242
147
|
<div class="grid_8">
|
243
|
-
<
|
244
|
-
|
245
|
-
|
246
|
-
</div>
|
148
|
+
<p class="s s16"><span>16</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
149
|
+
<p class="s s14"><span>14</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
150
|
+
<p class="s s13"><span>13</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
247
151
|
</div>
|
248
|
-
<div class="grid_8">
|
249
|
-
<
|
250
|
-
|
251
|
-
|
252
|
-
|
152
|
+
<div class="grid_8 upp">
|
153
|
+
<p class="s s11"><span>11</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
154
|
+
<p class="s s12"><span>12</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
155
|
+
<p class="s s13"><span>13</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
156
|
+
</div><div class="clearfix"></div>
|
157
|
+
<div class="grid_6">
|
158
|
+
<p class="s s12"><span>12</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
159
|
+
<p class="s s11"><span>11</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
160
|
+
<p class="s s10"><span>10</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
161
|
+
<p class="s s9"><span>9</span> <span class="text">Pack my box with five dozen liquor jugs.</span></p>
|
253
162
|
</div>
|
254
|
-
<div class="
|
255
|
-
<
|
256
|
-
|
257
|
-
|
258
|
-
|
163
|
+
<div class="grid_10 upp">
|
164
|
+
<p class="s s14"><span>14</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
165
|
+
<p class="s s16"><span>16</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
166
|
+
<p class="s s18"><span>18</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
167
|
+
</div><div class="clearfix"></div>
|
168
|
+
<div class="grid_16 upp">
|
169
|
+
<p class="s s21"><span>21</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
170
|
+
<p class="s s24"><span>24</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
171
|
+
<p class="s s30"><span>30</span> <span class="text">Pack my box with five dozen liquor jugs</span></p>
|
259
172
|
</div>
|
260
173
|
</div><!-- end .container_16 -->
|
261
174
|
|
@@ -264,6 +177,7 @@
|
|
264
177
|
<div id="footer" class="container_12">
|
265
178
|
<div class="grid_6 suffix_6">
|
266
179
|
<p>This web font specimen is brought to you by <a href="http://nicewebtype.com/">Nice Web Type</a>.<br />
|
180
|
+
Ported for <a href="http://www.sass-lang.com">Sass</a>/<a href="http://www.compass-style.org/">Compass</a> by <a href="http://www.oddbird.net/">Eric Meyer</a>.<br />
|
267
181
|
<a href="http://webfontspecimen.com/">Grab a copy and test your type</a>. Licensed via <a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">Creative Commons</a>.</p>
|
268
182
|
</div>
|
269
183
|
</div><!-- end #footer -->
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webfontspecimen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: true
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
7
|
+
- 3
|
8
8
|
- 0
|
9
|
-
|
9
|
+
- rc1
|
10
|
+
version: 0.3.0.rc1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Eric Meyer
|
@@ -14,7 +15,7 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-06-21 00:00:00 -06:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
@@ -28,8 +29,7 @@ dependencies:
|
|
28
29
|
- 0
|
29
30
|
- 10
|
30
31
|
- 0
|
31
|
-
|
32
|
-
version: 0.10.0.rc3
|
32
|
+
version: 0.10.0
|
33
33
|
type: :runtime
|
34
34
|
version_requirements: *id001
|
35
35
|
description: A Compass port of Nice Web Type's Web Font Specimen tool
|
@@ -47,6 +47,8 @@ files:
|
|
47
47
|
- stylesheets/wfs/_960.scss
|
48
48
|
- stylesheets/wfs/_base.scss
|
49
49
|
- templates/project/_specimen.scss
|
50
|
+
- templates/project/black.gif
|
51
|
+
- templates/project/grid.gif
|
50
52
|
- templates/project/manifest.rb
|
51
53
|
- templates/project/specimen.html
|
52
54
|
has_rdoc: true
|
@@ -67,11 +69,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
69
|
version: "0"
|
68
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
71
|
requirements:
|
70
|
-
- - "
|
72
|
+
- - ">"
|
71
73
|
- !ruby/object:Gem::Version
|
72
74
|
segments:
|
73
|
-
-
|
74
|
-
|
75
|
+
- 1
|
76
|
+
- 3
|
77
|
+
- 1
|
78
|
+
version: 1.3.1
|
75
79
|
requirements: []
|
76
80
|
|
77
81
|
rubyforge_project:
|