Skip to content

Commit 41ad09f

Browse files
committed
Change footer to index only (fix overlap)
1 parent 540a435 commit 41ad09f

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

home/templates/home/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ <h4>
2626
</div>
2727
</div>
2828
</div>
29-
{% endblock %}
29+
30+
{% include 'includes/footer.html' %}
31+
{% endblock %}

static/css/base.css

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,31 +41,31 @@ h1, h2, h3, hr, h5, h6 {
4141
}
4242

4343
.shop-now-button {
44-
background: black;
44+
background: #262323;
4545
color: white;
4646
min-width: 260px;
4747
}
4848

4949
.btn-black {
50-
background: black;
50+
background: #262323;
5151
color: white;
5252
}
5353

5454
.bg-black {
55-
background: black;
55+
background: #262323;
5656
color: white;
5757
}
5858

5959
.btn-outline-black {
6060
background: white;
61-
color: black !important; /* use important to override link colors for <a> elements */
62-
border: 1px solid black;
61+
color: #262323 !important; /* use important to override link colors for <a> elements */
62+
border: 1px solid #262323;
6363
}
6464

6565
.btn-outline-black:hover,
6666
.btn-outline-black:active,
6767
.btn-outline-black:focus {
68-
background: black;
68+
background: #262323;
6969
color: white !important;
7070
}
7171

@@ -80,15 +80,15 @@ h1, h2, h3, hr, h5, h6 {
8080
}
8181

8282
.text-black {
83-
color: #000 !important;
83+
color: #262323 !important;
8484
}
8585

8686
.border-black {
87-
border: 1px solid black !important;
87+
border: 1px solid #262323 !important;
8888
}
8989

9090
.bg-black {
91-
background: #000 !important;
91+
background: #262323 !important;
9292
}
9393

9494
.overlay {
@@ -147,7 +147,7 @@ input[name='q']::placeholder {
147147
height: 0;
148148
border-left: 4px solid transparent;
149149
border-right: 4px solid transparent;
150-
border-bottom: 10px solid black;
150+
border-bottom: 10px solid #262323;
151151
position: absolute;
152152
top: -10px;
153153
right: 36px;
@@ -209,7 +209,7 @@ input[name='q']::placeholder {
209209
}
210210

211211
.allauth-form-inner-content input {
212-
border-color: #000;
212+
border-color: #262323;
213213
border-radius: 0;
214214
}
215215

@@ -233,8 +233,8 @@ input[name='q']::placeholder {
233233
-moz-user-select: none;
234234
-ms-user-select: none;
235235
user-select: none;
236-
background-color: #000;
237-
border: 1px solid #000;
236+
background-color: #262323;
237+
border: 1px solid #262323;
238238
padding: .375rem .75rem;
239239
font-size: 1rem;
240240
line-height: 1.5;
@@ -304,7 +304,7 @@ input[name='q']::placeholder {
304304
#subscribe_submit {
305305
width: 60% !important;
306306
color: white;
307-
background-color: #000;
307+
background-color: #262323;
308308
}
309309

310310
/* fixed top navbar only on medium and up */

templates/base.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ <h4 class="logo-font my-1">Fantasy art prints and gifts</h4>
140140
{% block content %}
141141
{% endblock %}
142142

143-
{% include 'includes/footer.html' %}
144-
145143
{% block postloadjs %}
146144
<script type="text/javascript">
147145
$('.toast').toast('show');

0 commit comments

Comments
 (0)