Created
August 3, 2015 00:47
-
-
Save lozandier/4a0178fd820b67324c30 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| #foo | |
| #bar | |
| #repeating | |
| #repeating2 | |
| #repeating3 |
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
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| body | |
| display: flex | |
| flex-flow: row wrap | |
| div | |
| width: 50% | |
| height: 30vh | |
| margin-bottom: 2.5vh | |
| #foo | |
| background: linear-gradient(#fb3 50%, #58a 0) | |
| background-size: 100% 30px | |
| #bar | |
| background: linear-gradient( to right, #fb3 50%, #58a 0) | |
| background-size: 30px 100% | |
| #repeating | |
| background: repeating-linear-gradient(45deg, #fb3, #58a 30px) | |
| #repeating2 | |
| background: repeating-linear-gradient(45deg, #fb3, #fb3 15px, #58a 0, #58a 30px) | |
| #repeating3 | |
| background: repeating-linear-gradient(45deg, #fb3 0, #fb3 25%, #58a 0, #58a 50%) | |
| background-size: 42.426406871px 42.426406871px |
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
| body { | |
| display: flex; | |
| flex-flow: row wrap; | |
| } | |
| div { | |
| width: 50%; | |
| height: 30vh; | |
| margin-bottom: 2.5vh; | |
| } | |
| #foo { | |
| background: linear-gradient(#fb3 50%, #58a 0); | |
| background-size: 100% 30px; | |
| } | |
| #bar { | |
| background: linear-gradient(to right, #fb3 50%, #58a 0); | |
| background-size: 30px 100%; | |
| } | |
| #repeating { | |
| background: repeating-linear-gradient(45deg, #fb3, #58a 30px); | |
| } | |
| #repeating2 { | |
| background: repeating-linear-gradient(45deg, #fb3, #fb3 15px, #58a 0, #58a 30px); | |
| } | |
| #repeating3 { | |
| background: repeating-linear-gradient(45deg, #fb3 0, #fb3 25%, #58a 0, #58a 50%); | |
| background-size: 42.42641px 42.42641px; | |
| } |
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
| <div id='foo'></div> | |
| <div id='bar'></div> | |
| <div id='repeating'></div> | |
| <div id='repeating2'></div> | |
| <div id='repeating3'></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment