octopress-printable 0.0.4 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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
- }
@@ -1,6 +0,0 @@
1
- // Fixed Width Icons
2
- // -------------------------
3
- .#{$fa-css-prefix}-fw {
4
- width: (18em / 14);
5
- text-align: center;
6
- }