Skip to content

Commit cd934fb

Browse files
added credits to footer
1 parent 5742a8e commit cd934fb

File tree

2 files changed

+76
-7
lines changed

2 files changed

+76
-7
lines changed
Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,47 @@
11
<footer class="footer">
2-
<p class="footer__copyright">&copy; {{ date | date: "yyyy" }} Fretonator</p>
2+
<h6 class="footer__creditsTitle">Fretonator is open source</h6>
3+
<p class="footer__thanksCopy">
4+
Thank you to the following generous contributors:
5+
</p>
6+
<ul class="footer__creditsList">
7+
<li class="footer__creditsListItem">
8+
<a
9+
href="http://drozar.io"
10+
rel="nofollow noopener noreferrer"
11+
target="_blank"
12+
class="footer__creditsListItemLink"
13+
>
14+
Jacob D'Rozario
15+
</a>
16+
- design & UX
17+
</li>
18+
<li class="footer__creditsListItem">
19+
<a
20+
href="https://github.com/geometricpanda"
21+
rel="nofollow noopener noreferrer"
22+
target="_blank"
23+
class="footer__creditsListItemLink"
24+
>Jim Drury</a
25+
>
26+
- all things Angular
27+
</li>
28+
<li class="footer__creditsListItem">
29+
<a
30+
href="https://ell.io.tt/"
31+
rel="nofollow noopener noreferrer"
32+
target="_blank"
33+
class="footer__creditsListItemLink"
34+
>Elliot Brooks</a
35+
>
36+
- audio playback
37+
</li>
38+
</ul>
339
<a
440
class="footer__viewGithub"
541
href="https://github.com/ishythefishy/fretonator"
642
rel="nofollow noopener noreferrer"
743
target="_blank"
844
>View on GitHub</a
945
>
46+
<p class="footer__copyright">&copy; {{ date | date: 'yyyy' }} Fretonator</p>
1047
</footer>

apps/fretonator-web/src/app/common/footer/footer.component.scss

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
@import "../../../styles/vars";
2-
@import "../../../styles/functions";
3-
@import "../../../styles/mixins";
1+
@import '../../../styles/vars';
2+
@import '../../../styles/functions';
3+
@import '../../../styles/mixins';
4+
@import '../../../styles/typography';
45

56
.footer {
6-
background-color: var(--peach);
7+
background-color: var(--black);
78
box-sizing: border-box;
89
display: flex;
910
flex-direction: column;
@@ -12,8 +13,39 @@
1213
padding: pxToRem($grid-unit * 2);
1314
}
1415

16+
.footer__thanksCopy {
17+
@include font_bodyCopy();
18+
color: var(--offwhite);
19+
}
20+
21+
.footer__creditsTitle {
22+
@include font_medium();
23+
margin-top: pxToRem($grid-unit);
24+
margin-bottom: pxToRem($grid-unit);
25+
color: var(--peach);
26+
font-weight: var(--font-weight-bold);
27+
}
28+
29+
.footer__creditsList {
30+
list-style: none;
31+
text-align: center;
32+
padding: 0;
33+
margin-bottom: pxToRem($grid-unit * 4);
34+
}
35+
36+
.footer__creditsListItem {
37+
@include font_bodyCopy();
38+
color: var(--offwhite);
39+
}
40+
41+
.footer__creditsListItemLink {
42+
@include text_link();
43+
color: var(--yellow);
44+
border-color: var(--yellow);
45+
}
46+
1547
.footer__copyright {
16-
color: var(--black);
48+
color: var(--offwhite);
1749
font-size: pxToRem(12);
1850
letter-spacing: var(--letter-spacing-display);
1951
font-weight: var(--font-weight-bold);
@@ -23,7 +55,7 @@
2355
}
2456

2557
.footer__viewGithub {
26-
color: var(--black);
58+
color: var(--offwhite);
2759
font-size: pxToRem(12);
2860
display: block;
2961
margin-bottom: pxToRem($grid-unit * 2);

0 commit comments

Comments
 (0)