45 lines
594 B
CSS
45 lines
594 B
CSS
/* logo alignment stuff*/
|
|
a.navbar-brand {
|
|
margin-top: -11px;
|
|
}
|
|
|
|
|
|
/* style for login form */
|
|
#frontend-loginform {
|
|
width: 300px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.container {
|
|
width: auto;
|
|
/*max-width: 680px;*/
|
|
padding: 0 15px;
|
|
}
|
|
|
|
/* Footer text align */
|
|
.container .text-muted {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
/* sticky footer */
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
/* sticky footer height */
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
/* sticky footer height */
|
|
height: 60px;
|
|
background-color: #f5f5f5;
|
|
}
|