Skip to content

Commit cdba74d

Browse files
committed
added footer
1 parent 87ff27b commit cdba74d

File tree

5 files changed

+59
-10
lines changed

5 files changed

+59
-10
lines changed

static/assets/sass/style.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ a {
7575
}
7676

7777
a:hover {
78-
color: #f99;
78+
color: #6320ee;
7979
}
8080

8181
h1, h2, h3, h4, h5, h6 {
@@ -833,6 +833,10 @@ footer p {
833833
font-weight: 300;
834834
}
835835

836+
footer li a {
837+
color: #666 !important;
838+
}
839+
836840
footer p a {
837841
color: #f8f0fb;
838842
transition: all 0.3s;

static/assets/sass/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/assets/sass/style.sass

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ a
8383
text-decoration: none !important
8484

8585
a:hover
86-
color: #f99
86+
color: $primary-color
8787

8888

8989
h1,h2,h3,h4,h5,h6
@@ -891,13 +891,15 @@ footer
891891

892892
bottom: 0
893893
width: 100%
894-
894+
895895
footer p
896896
text-align: center
897897
padding: 30px 0px
898898
color: $main-font-color
899899
font-weight: 300
900900

901+
footer li a
902+
color: $dimText-color !important
901903

902904
footer p a
903905
color: $main-font-color

templates/components/footer.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<footer class="bg-primary-gradient">
2+
<div class="container py-4 py-lg-5">
3+
<div class="row justify-content-center">
4+
<div class="col-sm-4 col-md-3 text-center text-lg-start d-flex flex-column item">
5+
<h3 class="fs-6 fw-bold" style="margin-bottom: 10px;"> Services </h3>
6+
<ul class="list-unstyled dim">
7+
<li><a href="#">Web design</a></li>
8+
<li><a href="#">Development</a></li>
9+
<li><a href="#">Hosting</a></li>
10+
</ul>
11+
</div>
12+
<div class="col-sm-4 col-md-3 text-center text-lg-start d-flex flex-column item">
13+
<h3 class="fs-6 fw-bold" style="margin-bottom: 10px;">About</h3>
14+
<ul class="list-unstyled dim">
15+
<li><a href="#">Company</a></li>
16+
<li><a href="#">Team</a></li>
17+
<li><a href="#">Legacy</a></li>
18+
</ul>
19+
</div>
20+
<div class="col-sm-4 col-md-3 text-center text-lg-start d-flex flex-column item">
21+
<h3 class="fs-6 fw-bold" style="margin-bottom: 10px;" >Careers</h3>
22+
<ul class="list-unstyled dim">
23+
<li><a href="#">Job openings</a></li>
24+
<li><a href="#">Employee success</a></li>
25+
<li><a href="#">Benefits</a></li>
26+
</ul>
27+
</div>
28+
<div
29+
class="col-lg-3 text-center text-lg-start d-flex flex-column align-items-center order-first align-items-lg-start order-lg-last item social">
30+
<div class="fw-bold d-flex align-items-center mb-2">
31+
<span
32+
class="bs-icon-sm bs-icon-circle bs-icon-primary d-flex justify-content-center align-items-center bs-icon me-2">
33+
<img
34+
src="{{ url_for('static', filename='assets/images/logo.png') }}"
35+
alt=""
36+
/>
37+
</span></div>
38+
</div>
39+
</div>
40+
<hr>
41+
<div class="text-muted d-flex justify-content-between align-items-center pt-3">
42+
<p class="mb-0">Copyright © 2023 The <a href="#">CodeColts</a> Company. All rights
43+
reserved</p>
44+
45+
</div>
46+
</div>
47+
</footer>

templates/layout.html

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,8 @@
116116
<div class="container">
117117
<div class="row">
118118
<div class="col-lg-12">
119-
<p>
120-
Copyright © 2023 The <a href="#">CodeColts</a> Company. All rights
121-
reserved.
122-
123-
<br />
124-
</p>
119+
<!--footer-->
120+
{% include 'components/footer.html' %}
125121
</div>
126122
</div>
127123
</div>

0 commit comments

Comments
 (0)