57 lines
861 B
CSS
57 lines
861 B
CSS
|
|
html {
|
||
|
|
position: relative;
|
||
|
|
min-height: 100%;
|
||
|
|
}
|
||
|
|
body{
|
||
|
|
margin-top: 40px; /* to offset top-bar */
|
||
|
|
/*margin-bottom: 30px; /* Margin bottom by footer height */
|
||
|
|
}
|
||
|
|
|
||
|
|
#top-bar{
|
||
|
|
height: 41px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#side-bar{
|
||
|
|
background: #ECECEC;
|
||
|
|
border-right: 1px solid #DFDFDF;
|
||
|
|
padding-right: 0px;
|
||
|
|
padding-left: 0px;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
.side-menu > li a{
|
||
|
|
|
||
|
|
}
|
||
|
|
.side-menu > li a{
|
||
|
|
border-top: 1px solid #DFDFDF;
|
||
|
|
}
|
||
|
|
.side-sub-menu > li a{
|
||
|
|
padding-left: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.alert-container{
|
||
|
|
padding-right: 15px;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.alert-container .alert{
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
width: auto;
|
||
|
|
padding: 0 15px;
|
||
|
|
}
|
||
|
|
.container .text-muted {
|
||
|
|
margin: 5px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.footer {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
/* Set the fixed height of the footer here */
|
||
|
|
height: 35px;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|