Last active
January 31, 2019 12:21
-
-
Save sibsfinx/91928c3d8e161ddb94b6b4c24d8ec3e6 to your computer and use it in GitHub Desktop.
code-example-sass
This file contains hidden or 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
@keyframes star | |
0% | |
opacity: 0 | |
50% | |
opacity: 1 | |
100% | |
opacity: 0 | |
@keyframes star-glow | |
0% | |
opacity: 0.5 | |
50% | |
opacity: 1 | |
100% | |
opacity: 0.5 | |
@keyframes pulse | |
0% | |
transform: scale(0) | |
opacity: 1 | |
0% | |
transform: scale(1) | |
opacity: 0 | |
0% | |
transform: scale(0) | |
opacity: 1 | |
@keyframes space-rotate | |
0% | |
transform: rotate3d(0, 0, 1, 0deg) | |
50% | |
transform: rotate3d(0, 0, 1, 180deg) | |
100% | |
transform: rotate3d(0, 0, 1, 360deg) | |
@keyframes bg-rotate | |
0% | |
transform: rotate3d(0, 0, 1, 0deg) | |
transform-origin: 50% 50% | |
50% | |
transform: rotate3d(0, 0, 1, 180deg) | |
transform-origin: 45% 55% | |
100% | |
transform: rotate3d(0, 0, 1, 360deg) | |
transform-origin: 50% 50% | |
@keyframes meteor | |
0% | |
transform: translate3d(-1000px, -1000px, 0) | |
opacity: 0.5 | |
100% | |
transform: translate3d(1000px, 1000px, 0) | |
opacity: 1 |
This file contains hidden or 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
@import settings/colors | |
@import settings/mixins | |
@import settings/fonts | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/normalize | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/print | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/scaffolding | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/type | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/grid | |
@import node_modules/bootstrap-sass/assets/stylesheets/bootstrap/buttons | |
@import settings/typography | |
@import modules/layout | |
@import modules/content-block | |
@import modules/banner | |
@import modules/animations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment