Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change bg color to footer color #75

Merged
merged 1 commit into from
Jun 22, 2016
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
1 change: 1 addition & 0 deletions core/static/css/_variables.sass
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $btn-secondary-border: $gray-light
$body-color: $gray-mid
$brand-primary: $green-mid
$brand-secondary: $yellow-light
$body-bg: $black-almost

$link-hover-color: $green
$btn-font-weight: $normal
3 changes: 3 additions & 0 deletions core/static/css/modules/_base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ h1, h2, h3, h4, h5, h6
font-weight: $normal
color: $black-almost

main
background-color: $white

// Sticky Footer (https://getbootstrap.com/examples/sticky-footer/)
html
position: relative
Expand Down
6 changes: 3 additions & 3 deletions core/templates/core/layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
{% endif %}
</head>
<body class="{% block body_classes %}{% endblock %}">

{% block body %}{% endblock %}

<main>
{% block body %}{% endblock %}
</main>
<footer class="js-site-footer site-footer p-y-3">
<div class="muted container">
<div class="row">
Expand Down