mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 12:44:03 +00:00
58 lines
872 B
SCSS
58 lines
872 B
SCSS
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
/* Margin bottom by 2 times the footer height */
|
|
margin-bottom: 60px;
|
|
/* Margin bottom by navbar height */
|
|
padding-top: 60px;
|
|
}
|
|
|
|
#content {
|
|
padding-bottom: 60px;
|
|
}
|
|
|
|
#footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
/* Set the fixed height of the footer here */
|
|
height: 60px;
|
|
background-color: #f5f5f5;
|
|
.container {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
.nav-tabs {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.img-center {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* centered columns styles */
|
|
.row-centered {
|
|
text-align:center;
|
|
}
|
|
.col-centered {
|
|
display:inline-block;
|
|
float:none;
|
|
/* reset the text-align */
|
|
text-align:left;
|
|
/* inline-block space fix */
|
|
margin-right:-4px;
|
|
}
|
|
|
|
.col-top {
|
|
vertical-align:top;
|
|
}
|
|
|
|
fieldset {
|
|
margin: 20px 0 20px 0;
|
|
}
|
|
|
|
.bootstrap-switch { height: 1.7em }
|