-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Normalize * bundle update * Update README * Add basic animation mixins * Add a fixed layout stylesheet
- Loading branch information
Ben Smithett
committed
Oct 28, 2013
1 parent
f948f21
commit 995cf16
Showing
11 changed files
with
70 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Example keyframe animation. Feel free to delete this. | ||
+keyframes(flash) | ||
0% | ||
background-color: red | ||
|
||
50% | ||
background-color: goldenrod | ||
|
||
100% | ||
background-color: red |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@charset "utf-8" | ||
$responsive: false | ||
@import application | ||
|
||
// Include this stylesheet on pages you don't want to be responsive. | ||
// If every page in your app is responsive, feel free to delete this. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
@charset "utf-8" | ||
$lt-ie9: true | ||
@import application | ||
|
||
// This stylesheet can be automatically included for IE < 9. | ||
// See index.html for an example. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// -webkit- is the only required prefix now! http://caniuse.com/css-animation | ||
// Syntax reference for $animation argument: | ||
// https://developer.mozilla.org/en-US/docs/Web/CSS/animation | ||
// http://css-tricks.com/snippets/css/keyframe-animation-syntax/ | ||
@mixin animation ( $animation ) | ||
-webkit-animation: $animation | ||
animation: $animation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// -webkit- is the only required prefix now! http://caniuse.com/css-animation | ||
=keyframes($name) | ||
@-webkit-keyframes #{$name} | ||
@content | ||
@keyframes #{$name} | ||
@content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
+pre(2) | ||
+span-columns(8) | ||
+post(2) | ||
background-color: rgba(0, 0, 255, 0.5) | ||
+animation(flash 1s infinite) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters