141 lines
1.9 KiB
CSS
141 lines
1.9 KiB
CSS
/*
|
|
* General elements
|
|
*/
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
thead input {
|
|
width: 100%;
|
|
padding: 3px;
|
|
}
|
|
|
|
/*
|
|
* Specific areas
|
|
*/
|
|
|
|
/*
|
|
* Whole Page
|
|
*/
|
|
#page {
|
|
position: relative;
|
|
min-height: 100%;
|
|
height: auto !important;
|
|
height: 100%;
|
|
}
|
|
|
|
/*
|
|
* Page Header
|
|
*/
|
|
#page-header {
|
|
/* position: relative; */
|
|
padding-top: 0.6rem;
|
|
padding-left: 0.6rem;
|
|
padding-right: 0.6rem;
|
|
padding-bottom: 0.6rem;
|
|
/* border-bottom: 2px solid #646464; */
|
|
background-color: #58ab27;
|
|
color: #e3e3e3;
|
|
}
|
|
|
|
#page-header h2 {
|
|
display: inline;
|
|
font-size: 2rem;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
#page-header h2 img {
|
|
margin-right: 1.2rem;
|
|
}
|
|
|
|
#page-header h2 a {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#page-header h2 a:hover {
|
|
color: #e3e3e3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#page-header #login-widget {
|
|
float: right;
|
|
}
|
|
|
|
/*
|
|
* Messages
|
|
*/
|
|
#messages div.alert {
|
|
margin-top: 1.2rem;
|
|
margin-bottom: 0rem;
|
|
}
|
|
|
|
/*
|
|
* Page Body
|
|
*/
|
|
#page-body {
|
|
padding-bottom: 4.8rem;
|
|
}
|
|
|
|
#page-body h5 {
|
|
margin-top: 0px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*
|
|
* Page footer
|
|
*/
|
|
#page-footer {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
height: 4rem;
|
|
width: 100%;
|
|
padding-top: 1rem;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
/* border-top: 2px solid #646464; */
|
|
background-color: #58ab27;
|
|
color: #ffffff;
|
|
}
|
|
#page-footer .signum {
|
|
float: right;
|
|
padding-top: 2px;
|
|
/* font-family: serif; */
|
|
/* font-style: italic; */
|
|
}
|
|
|
|
#page-footer a {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#page-footer a:hover {
|
|
color: #e3e3e3;
|
|
}
|
|
|
|
/*
|
|
* Misc
|
|
*/
|
|
.container > .jumbotron,
|
|
.container-fluid > .jumbotron {
|
|
margin-top: 2.4rem;
|
|
}
|
|
|
|
.action-tabs {
|
|
margin-top: 2.4rem;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.panel-heading h3, .panel-heading h4 {
|
|
font-wight: inherit;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.panel-group .panel-footer {
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
|
|
/*
|
|
.form-group.required .control-label:after {
|
|
content:"*";
|
|
color: red;
|
|
}
|
|
*/ |