Skip to content

Instantly share code, notes, and snippets.

@malerba118
Created June 14, 2017 04:11
Show Gist options
  • Save malerba118/eb40d2ffd194a54f4f911514425d2edc to your computer and use it in GitHub Desktop.
Save malerba118/eb40d2ffd194a54f4f911514425d2edc to your computer and use it in GitHub Desktop.
html, body
{
background: #F9F7F6;
font-family: 'Open Sans';
font-size: 12px;
line-height: 1.25;
}
header
{
text-align: center;
padding: 2em;
color: #404D5B;
}
#content {
display: flex;
padding: 30px 200px;
}
#note-list {
flex: 1;
background: #c0dfd9;
overflow: scroll;
height: 100vh;
display: flex;
flex-direction: column;
color: #404D5B;
text-transform:uppercase;
border-right: 2px solid #F9F7F6;
min-width: 200px;
}
.note-list-item {
cursor: pointer;
padding: 15px;
border-bottom: 2px solid #F9F7F6;
transition: all 0.25s ease;
}
.note-list-item:hover {
background: #404D5B;
color: #F9F7F6;
}
.note-list-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#note-detail {
flex: 2;
background: #c0dfd9;
padding: 50px;
color: #404D5B;
text-transform:uppercase;
}
#preloader {
margin: 0 auto;
display: block;
margin-top: 240px;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment