Skip to content
This repository was archived by the owner on Oct 23, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion marketpulse/base/static/css/app.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
/* Generic
==================== */

html,
body,
#outer-wrapper
{
height: 100%;
}

#wrapper {
padding-bottom: 20px;
margin-bottom: -180px;
min-height: 100%;
}

.container {
max-width: 1000px;
margin-top: 15px;
min-height: 500px;
}

.jumbotron {
Expand Down Expand Up @@ -101,6 +109,7 @@ a:focus.persona-button {
@media only screen and (max-width:760px) {
#wrapper {
width: 98%;
margin-bottom: -270px;
}

.row {
Expand Down Expand Up @@ -135,6 +144,11 @@ a:focus.persona-button {
}
}

@media only screen and (max-width:1000px) {
#wrapper {
margin-bottom: -230px;
}
}

/* Navigation
==================== */
Expand Down Expand Up @@ -275,9 +289,15 @@ small.error {
/* Footer
==================== */

#colophon,
#push {
height: 180px;
}

#colophon {
background-color: #CD5F5A;
color: #eee;
margin: 0px;
}

#colophon .footer-logo img {
Expand All @@ -295,3 +315,21 @@ small.error {
#colophon a:hover {
color: lightgray;
}

@media only screen and (max-width:1000px) {
#colophon,
#push {
height: 230px;
}

#colophon .license {
margin-left: 0px;
}
}

@media only screen and (max-width:760px) {
#colophon,
#push {
height: 270px;
}
}
2 changes: 2 additions & 0 deletions marketpulse/base/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@
{% block content %}
{% endblock %}
</div>

<div id="push"></div>
</div>

<footer id="colophon">
Expand Down