octopress-printable 0.0.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/octopress-printable/version.rb +1 -1
- metadata +9 -28
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +0 -565
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/stylesheets/_animated.scss +0 -34
- data/assets/stylesheets/_bordered-pulled.scss +0 -16
- data/assets/stylesheets/_core.scss +0 -13
- data/assets/stylesheets/_fixed-width.scss +0 -6
- data/assets/stylesheets/_icons.scss +0 -596
- data/assets/stylesheets/_larger.scss +0 -13
- data/assets/stylesheets/_list.scss +0 -19
- data/assets/stylesheets/_mixins.scss +0 -27
- data/assets/stylesheets/_path.scss +0 -15
- data/assets/stylesheets/_rotated-flipped.scss +0 -20
- data/assets/stylesheets/_stacked.scss +0 -20
- data/assets/stylesheets/_variables.scss +0 -606
- data/assets/stylesheets/font-awesome.scss +0 -17
Binary file
|
Binary file
|
Binary file
|
@@ -1,34 +0,0 @@
|
|
1
|
-
// Spinning Icons
|
2
|
-
// --------------------------
|
3
|
-
|
4
|
-
.#{$fa-css-prefix}-spin {
|
5
|
-
-webkit-animation: fa-spin 2s infinite linear;
|
6
|
-
animation: fa-spin 2s infinite linear;
|
7
|
-
}
|
8
|
-
|
9
|
-
.#{$fa-css-prefix}-pulse {
|
10
|
-
-webkit-animation: fa-spin 1s infinite steps(8);
|
11
|
-
animation: fa-spin 1s infinite steps(8);
|
12
|
-
}
|
13
|
-
|
14
|
-
@-webkit-keyframes fa-spin {
|
15
|
-
0% {
|
16
|
-
-webkit-transform: rotate(0deg);
|
17
|
-
transform: rotate(0deg);
|
18
|
-
}
|
19
|
-
100% {
|
20
|
-
-webkit-transform: rotate(359deg);
|
21
|
-
transform: rotate(359deg);
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
@keyframes fa-spin {
|
26
|
-
0% {
|
27
|
-
-webkit-transform: rotate(0deg);
|
28
|
-
transform: rotate(0deg);
|
29
|
-
}
|
30
|
-
100% {
|
31
|
-
-webkit-transform: rotate(359deg);
|
32
|
-
transform: rotate(359deg);
|
33
|
-
}
|
34
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
// Bordered & Pulled
|
2
|
-
// -------------------------
|
3
|
-
|
4
|
-
.#{$fa-css-prefix}-border {
|
5
|
-
padding: .2em .25em .15em;
|
6
|
-
border: solid .08em $fa-border-color;
|
7
|
-
border-radius: .1em;
|
8
|
-
}
|
9
|
-
|
10
|
-
.pull-right { float: right; }
|
11
|
-
.pull-left { float: left; }
|
12
|
-
|
13
|
-
.#{$fa-css-prefix} {
|
14
|
-
&.pull-left { margin-right: .3em; }
|
15
|
-
&.pull-right { margin-left: .3em; }
|
16
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
// Base Class Definition
|
2
|
-
// -------------------------
|
3
|
-
|
4
|
-
.#{$fa-css-prefix} {
|
5
|
-
display: inline-block;
|
6
|
-
font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
|
7
|
-
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
8
|
-
text-rendering: auto; // optimizelegibility throws things off #1094
|
9
|
-
-webkit-font-smoothing: antialiased;
|
10
|
-
-moz-osx-font-smoothing: grayscale;
|
11
|
-
transform: translate(0, 0); // ensures no half-pixel rendering in firefox
|
12
|
-
|
13
|
-
}
|