Skip to content

Commit a0a217a

Browse files
author
Felix Hennig
committed
Added links and image
1 parent 350b8e3 commit a0a217a

File tree

3 files changed

+101
-2
lines changed

3 files changed

+101
-2
lines changed

src/css/footer.css

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,50 @@ footer.footer {
1010
margin: 0.5rem 0;
1111
}
1212

13+
.footer-info {
14+
display: flex;
15+
gap: 24px;
16+
}
17+
18+
@media screen and (max-width: 720px) {
19+
.footer-info {
20+
flex-direction: column;
21+
}
22+
}
23+
24+
@media screen and (min-width: 720px) {
25+
.footer-info {
26+
flex-direction: row;
27+
}
28+
}
29+
30+
.footer-info-item-large {
31+
flex-grow: 3;
32+
}
33+
34+
.footer-info-item {
35+
flex-grow: 1;
36+
}
37+
38+
.footer-info-item h2 {
39+
margin-top: 0;
40+
}
41+
42+
.footer-link-list {
43+
list-style-type: none;
44+
padding: 0;
45+
margin: 0;
46+
}
47+
48+
.footer-link-list li a {
49+
color: var(--footer-font-color);
50+
}
51+
52+
.footer-link-list li a:hover {
53+
text-decoration: none;
54+
color: var(--color-brand-primary);
55+
}
56+
1357
.c-and-socials {
1458
display: flex;
1559
gap: 24px;
@@ -52,12 +96,17 @@ footer.footer {
5296
aspect-ratio: 1;
5397
height: 36px;
5498
cursor: pointer;
55-
transition: all .3s;
99+
transition: all 0.3s;
56100
}
57101

58102
.social-icon:hover {
59103
background-color: var(--color-brand-primary);
60104
color: var(--footer-font-color);
61105
text-decoration: none;
106+
}
62107

63-
}
108+
.footer-seperator {
109+
width: 100%;
110+
height: 1px;
111+
background-color: var(--footer-font-color);
112+
}

src/img/logo-2-1.png

2.99 KB
Loading

src/partials/footer-content.hbs

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,56 @@
11
<footer class="footer">
22
<div class="container">
33
<div class="footer-container">
4+
<!-- link columns -->
5+
<div class="footer-info">
6+
<div class="footer-info-item-large">
7+
<img src="{{{uiRootPath}}}/img/logo-2-1.png">
8+
<p>
9+
your data, your platform
10+
</p>
11+
</div>
12+
<div class="footer-info-item">
13+
<h2>Company</h2>
14+
<ul class="footer-link-list">
15+
<li>
16+
<a href="https://stackable.tech/en/about-us">About Us</a>
17+
</li>
18+
<li>
19+
<a href="https://stackable.tech/en/blog">Blog</a>
20+
</li>
21+
<li>
22+
<a href="https://jobs.stackable.de/" target="_blank">Jobs</a>
23+
</li>
24+
</ul>
25+
</div>
26+
<div class="footer-info-item">
27+
<h2>Support</h2>
28+
<ul class="footer-link-list">
29+
<li>
30+
<a href="https://stackable.tech/en/contact">Contact Us</a>
31+
</li>
32+
<li>
33+
<a href="https://stackable.tech/en/imprint">Imprint</a>
34+
</li>
35+
<li>
36+
<a href="https://stackable.tech/en/data-protection">Data Protection</a>
37+
</li>
38+
</ul>
39+
</div>
40+
<div class="footer-info-item">
41+
<h2>Get in touch</h2>
42+
<ul class="footer-link-list">
43+
<li>
44+
<a href="mailto:info@stackable.de">info@stackable.de</a>
45+
</li>
46+
<li>
47+
<a href="tel:+4941039263100">+49 4103 926 3100</a>
48+
</li>
49+
</ul>
50+
</div>
51+
</div>
52+
<div class="footer-seperator"></div>
53+
<!-- social links -->
454
<div class="c-and-socials">
555
<div>© 2022 Stackable.</div>
656
<div class="social-icons-container">

0 commit comments

Comments
 (0)