Last active
March 18, 2019 18:44
-
-
Save starryeyez024/10d3278633190d1d66b62d3d4ef5abc1 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
| <div class="container"> | |
| <div class="logo">Logo</div> | |
| <div class="links"> | |
| <ul> | |
| <li>Try</li> | |
| <li>Learn</li> | |
| <li>Buy</li> | |
| </ul> | |
| </div> | |
| </div> |
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.5.4) | |
| // ---- | |
| .container { | |
| display: flex; | |
| width: 100%; | |
| background: lightgray; | |
| padding: 20px 0; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .logo { | |
| background: pink; | |
| width: 150px; | |
| margin-left: 10px; | |
| } | |
| .links { | |
| display: block; | |
| flex: 1; | |
| } | |
| ul { | |
| list-style-type: none; | |
| margin: 0; | |
| display: flex; | |
| justify-content: center; | |
| } | |
| li { | |
| display: inline-block; | |
| padding: 0 30px; | |
| margin: 0; | |
| } |
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
| .container { | |
| display: flex; | |
| width: 100%; | |
| background: lightgray; | |
| padding: 20px 0; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .logo { | |
| background: pink; | |
| width: 150px; | |
| margin-left: 10px; | |
| } | |
| .links { | |
| display: block; | |
| flex: 1; | |
| } | |
| ul { | |
| list-style-type: none; | |
| margin: 0; | |
| display: flex; | |
| justify-content: center; | |
| } | |
| li { | |
| display: inline-block; | |
| padding: 0 30px; | |
| margin: 0; | |
| } |
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 class="container"> | |
| <div class="logo">Logo</div> | |
| <div class="links"> | |
| <ul> | |
| <li>Try</li> | |
| <li>Learn</li> | |
| <li>Buy</li> | |
| </ul> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment