Skip to content

Instantly share code, notes, and snippets.

@jsmayo
Created January 31, 2018 03:09
Show Gist options
  • Select an option

  • Save jsmayo/a6bc15f82f1c246ef2b3270ccbc8a354 to your computer and use it in GitHub Desktop.

Select an option

Save jsmayo/a6bc15f82f1c246ef2b3270ccbc8a354 to your computer and use it in GitHub Desktop.
Super Simple Flexbox Side Nav S4.L39
<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>
@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