survivalkit 1.0.beta.10 → 1.0.beta.11
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +3 -0
- data/lib/survivalkit.rb +4 -3
- data/stylesheets/survivalkit/fonts/_all.scss +3 -0
- data/stylesheets/survivalkit/fonts/_font-awesome.scss +544 -310
- data/stylesheets/survivalkit/fonts/_league-gothic.scss +32 -44
- data/stylesheets/survivalkit/fonts/_ostrich-sans.scss +49 -56
- data/stylesheets/survivalkit/reset/_formalize.scss +2 -2
- data/stylesheets/survivalkit/reset/_meyer-reset.scss +4 -4
- data/stylesheets/survivalkit/reset/_normalize.scss +215 -192
- data/stylesheets/survivalkit/reset/_reset.scss +7 -5
- data/templates/clean/manifest.rb +4 -8
- data/templates/drupal/manifest.rb +4 -8
- data/templates/project/manifest.rb +3 -5
- data/templates/shared/partials/01-variables/_all.scss +1 -1
- data/templates/shared/partials/01-variables/{_base.scss → _settings.scss} +4 -4
- data/templates/shared/partials/03-extend/_all.scss +0 -1
- data/templates/shared/partials/05-layout/_grids-singularitygs.scss +59 -0
- data/templates/shared/partials/06-ui-patterns/_drupal-patterns.scss +8 -0
- data/templates/shared/partials/{08-media → 07-media}/_print.scss +0 -0
- data/templates/shared/style.scss +18 -54
- data/templates/shared/your-design-here/_design.scss +1 -0
- metadata +33 -23
- data/stylesheets/survivalkit/style-tile/_all.scss +0 -1
- data/stylesheets/survivalkit/style-tile/_tile-layout.scss +0 -201
- data/stylesheets/survivalkit/survival-kit/_survival-kit.sass +0 -157
- data/templates/shared/partials/03-extend/_helpers.scss +0 -7
- data/templates/shared/partials/06-ui-patterns/_common.scss +0 -1
- data/templates/shared/partials/07-styletile/_tile-design.scss +0 -213
@@ -1,46 +1,34 @@
|
|
1
1
|
@import "compass/css3/font-face";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
@
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
/* Condensed Italic */
|
38
|
-
@include font-face(
|
39
|
-
'League Gothic Condensed',
|
40
|
-
font-files(
|
41
|
-
"leaguegothic-condensed-italic-webfont.woff", woff,
|
42
|
-
"leaguegothic-condensed-italic-webfont.ttf", truetype,
|
43
|
-
"leaguegothic-condensed-italic-webfont.svg#league_gothic_condensed_itaRg", svg),
|
44
|
-
'leaguegothic-condensed-italic-webfont.eot',
|
45
|
-
normal,
|
46
|
-
italic);
|
3
|
+
// available fonts:
|
4
|
+
// all, regular, italic, condensed-regular, condensed-italic
|
5
|
+
@mixin leaguegothic-font-face($fonts: all) {
|
6
|
+
$all-fonts: regular, italic, condensed-regular, condensed-italic;
|
7
|
+
@if $fonts == all {
|
8
|
+
$fonts: $all-fonts;
|
9
|
+
}
|
10
|
+
@each $font in $fonts {
|
11
|
+
@for $i from 1 through length($all-fonts) {
|
12
|
+
@if $font == nth($all-fonts, $i) {
|
13
|
+
$weight: normal;
|
14
|
+
$style: normal;
|
15
|
+
@if $font == italic {
|
16
|
+
$style: italic;
|
17
|
+
}
|
18
|
+
@if $font == condensed-italic {
|
19
|
+
$style: italic;
|
20
|
+
}
|
21
|
+
@include font-face(
|
22
|
+
'League Gothic',
|
23
|
+
font-files(
|
24
|
+
"leaguegothic-#{$font}-webfont.woff", woff,
|
25
|
+
"leaguegothic-#{$font}-webfont.ttf", truetype,
|
26
|
+
"leaguegothic-#{$font}-webfont.svg#league_gothic#{$font}", svg
|
27
|
+
),
|
28
|
+
'leaguegothic-#{$font}-webfont.eot',
|
29
|
+
$weight,
|
30
|
+
$style);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
@@ -1,69 +1,62 @@
|
|
1
1
|
@import "compass/css3/font-face";
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
@
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
@include font-face(
|
40
|
-
'Ostrich',
|
41
|
-
font-files(
|
42
|
-
"ostrich-black-webfont.woff", woff,
|
43
|
-
"ostrich-black-webfont.ttf", truetype,
|
44
|
-
"ostrich-black-webfont.svg#ostrich_black_webfont", svg),
|
45
|
-
'ostrich-black-webfont.eot',
|
46
|
-
black,
|
47
|
-
normal);
|
48
|
-
|
49
|
-
/* Dashed */
|
50
|
-
@include font-face(
|
3
|
+
// available fonts:
|
4
|
+
// all, regular, light, bold, black
|
5
|
+
@mixin ostrich-font-face($fonts: all) {
|
6
|
+
$all-fonts: regular, light, bold, black;
|
7
|
+
@if $fonts == all {
|
8
|
+
$fonts: $all-fonts;
|
9
|
+
}
|
10
|
+
@each $font in $fonts {
|
11
|
+
@for $i from 1 through length($all-fonts) {
|
12
|
+
@if $font == nth($all-fonts, $i) {
|
13
|
+
$weight: normal;
|
14
|
+
$style: normal;
|
15
|
+
@if $font == italic {
|
16
|
+
$style: italic;
|
17
|
+
}
|
18
|
+
@if $font == condensed-italic {
|
19
|
+
$style: italic;
|
20
|
+
}
|
21
|
+
@include font-face(
|
22
|
+
'Ostrich',
|
23
|
+
font-files(
|
24
|
+
"ostrich-#{$font}-webfont.woff", woff,
|
25
|
+
"ostrich-#{$font}-webfont.ttf", truetype,
|
26
|
+
"ostrich-#{$font}-webfont.svg#ostrich#{$font}", svg
|
27
|
+
),
|
28
|
+
'ostrich-#{$font}-webfont.eot',
|
29
|
+
$weight,
|
30
|
+
$style);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
// dashed
|
37
|
+
@mixin ostrich-dashed-font-face() {
|
38
|
+
@include font-face(
|
51
39
|
'Ostrich Dashed',
|
52
40
|
font-files(
|
53
|
-
|
54
|
-
|
55
|
-
|
41
|
+
"ostrich-dashed-webfont.woff", woff,
|
42
|
+
"ostrich-dashed-webfont.ttf", truetype,
|
43
|
+
"ostrich-dashed-webfont.svg#ostrich-dashed", svg
|
44
|
+
),
|
56
45
|
'ostrich-dashed-webfont.eot',
|
57
46
|
normal,
|
58
47
|
normal);
|
48
|
+
}
|
59
49
|
|
60
|
-
|
61
|
-
@
|
50
|
+
// rounded
|
51
|
+
@mixin ostrich-rounded-font-face() {
|
52
|
+
@include font-face(
|
62
53
|
'Ostrich Rounded',
|
63
54
|
font-files(
|
64
|
-
|
65
|
-
|
66
|
-
|
55
|
+
"ostrich-rounded-webfont.woff", woff,
|
56
|
+
"ostrich-rounded-webfont.ttf", truetype,
|
57
|
+
"ostrich-rounded-webfont.svg#ostrich-rounded#", svg
|
58
|
+
),
|
67
59
|
'ostrich-rounded-webfont.eot',
|
68
60
|
normal,
|
69
61
|
normal);
|
62
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@
|
1
|
+
@mixin formalize {
|
2
2
|
// Note: This file is dependent on Sass and Compass.
|
3
3
|
// Sass = http://sass-lang.com
|
4
4
|
// Compass = http://compass-style.org
|
@@ -289,5 +289,5 @@
|
|
289
289
|
.ie6_input_disabled {
|
290
290
|
background: #eeeeee;
|
291
291
|
}
|
292
|
-
|
293
292
|
}
|
293
|
+
|
@@ -1,7 +1,7 @@
|
|
1
1
|
@mixin meyer-reset {
|
2
|
-
/* http://meyerweb.com/eric/tools/css/reset/
|
3
|
-
|
4
|
-
|
2
|
+
// /* http://meyerweb.com/eric/tools/css/reset/
|
3
|
+
// * v2.0 | 20110126
|
4
|
+
// * License: none (public domain) */
|
5
5
|
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
|
6
6
|
margin: 0;
|
7
7
|
padding: 0;
|
@@ -10,7 +10,7 @@
|
|
10
10
|
font: inherit;
|
11
11
|
vertical-align: baseline;
|
12
12
|
}
|
13
|
-
/* HTML5 display-role reset for older browsers */
|
13
|
+
// /* HTML5 display-role reset for older browsers */
|
14
14
|
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
|
15
15
|
display: block;
|
16
16
|
}
|