Created
January 31, 2018 03:09
-
-
Save jsmayo/a6bc15f82f1c246ef2b3270ccbc8a354 to your computer and use it in GitHub Desktop.
Super Simple Flexbox Side Nav S4.L39
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="sidebar"> | |
| <!-- This section shoudl be at the top--> | |
| <div class="section"> | |
| <div class="item">Messages</div> | |
| <div class="item">Friends</div> | |
| <div class="item">User Profile</div> | |
| </div> | |
| <!-- This section should be at the botto --> | |
| <div class="section"> | |
| <div class="item">Settings</div> | |
| <div class="item">Questions?</div> | |
| </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
| @import url('https://fonts.googleapis.com/css?family=Raleway:200'); | |
| body { | |
| margin: 0; | |
| background: #ecf0f1; | |
| } | |
| .sidebar { | |
| height: 100vh; | |
| width: 15vw; | |
| font-family: raleway; | |
| background: #34495e; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: space-between; | |
| flex-wrap: wrap; | |
| } | |
| .item { | |
| color: white; | |
| font-size: 20px; | |
| padding: 10px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment