Added sidebar menu and some layout fixes

This commit is contained in:
Joseph Cohen
2014-12-29 12:10:43 -06:00
parent 9c71ba9392
commit 819cb191c9
29 changed files with 3112 additions and 212 deletions

View File

@@ -52,5 +52,13 @@ body.dashboard {
font-weight: 300;
text-transform: uppercase;
}
.striped-list {
.striped-list-item {
border-bottom: 1px solid #f0f0f0;
padding: 8px 0;
}
}
}
}

View File

@@ -6,7 +6,7 @@ body.dashboard {
background: $sidebar-background-color;
@include box-shadow($sidebar-border-shadow);
position: relative;
z-index: 100;
z-index: 999;
.sidebar-inner {
position: relative;
@@ -71,5 +71,25 @@ body.dashboard {
}
}
}
.bottom-menu-sidebar {
position: fixed;
bottom: 0;
width: 230px;
z-index: 999;
ul > li {
float: left;
display: block;
width: 33.333%;
border-right: 1px solid #D1DFEC;
border-top: 1px solid #D1DFEC;
a {
display: block;
position: relative;
text-align: center;
padding: 6px 0;
background: #E8EFF6;
}
}
}
}
}