Fix the footer to be on all pages (except the repo view page due to an issue), fix the double body tag issue and add padding to content pages
This commit is contained in:
parent
c7e9b0d9f6
commit
45680d4a8e
10 changed files with 86 additions and 58 deletions
|
@ -1,5 +1,26 @@
|
|||
* {
|
||||
font-family: 'Droid Sans', sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
min-height: 100%;
|
||||
height: auto !important;
|
||||
height: 100%;
|
||||
margin: 0 auto -136px;
|
||||
}
|
||||
|
||||
.footer-container, .push {
|
||||
height: 110px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.button-hidden {
|
||||
|
@ -624,49 +645,53 @@ form input.ng-valid.ng-dirty,
|
|||
}
|
||||
}
|
||||
|
||||
.landing-footer {
|
||||
.page-footer {
|
||||
background-color: white;
|
||||
background-image: none;
|
||||
padding: 10px;
|
||||
padding-bottom: 40px;
|
||||
margin-top: 10px;
|
||||
margin-top: 52px;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.landing-footer .row {
|
||||
.page-footer .row {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.landing-footer .copyright-container {
|
||||
.page-footer .logo-container {
|
||||
font-size: 11px;
|
||||
color: black;
|
||||
text-align: right;
|
||||
padding-right: 30px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.landing-footer .copyright-container a {
|
||||
.page-footer .logo-container a {
|
||||
display: block;
|
||||
margin-top: 4px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.landing-footer .dt-logo {
|
||||
.page-footer .dt-logo {
|
||||
vertical-align: center;
|
||||
max-width: 150px;
|
||||
}
|
||||
|
||||
.landing-footer .copyright {
|
||||
font-size: 11px;
|
||||
.page-footer .copyright {
|
||||
font-size: 12px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.landing-footer ul {
|
||||
.page-footer ul {
|
||||
list-style-type: none;
|
||||
margin: 0px;
|
||||
padding-left: 0px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.landing-footer li {
|
||||
.page-footer li {
|
||||
margin: 0px;
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.user-welcome {
|
||||
|
@ -698,7 +723,6 @@ form input.ng-valid.ng-dirty,
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.entity-mini-listing {
|
||||
margin: 2px;
|
||||
}
|
||||
|
|
Reference in a new issue