Skip to content

Commit 99d1e9f

Browse files
committed
Update links to github and social media on settings page
2 parents 0ae2bd8 + df016e4 commit 99d1e9f

File tree

3 files changed

+50
-6
lines changed

3 files changed

+50
-6
lines changed

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
name: ClassClock
3+
githubURL: https://github.com/MoralCode/ClassClock
4+
slackURL: https://join.slack.com/t/classclock/shared_invite/enQtNTE0MDkyNzAwNzU3LWNhMGUwODU2ZjhkYTYxMTgzNDE1OWEyMGY2OGNiNTBhOWM5NDVhZGUzNDVlNzRiZTE3NTNmODFjYWNkNDhmMDU
5+
twitterURL: https://twitter.com/classclockapp
6+
instagramURL: https://www.instagram.com/classclockapp/

settings.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@
1515

1616

1717
<section id="credits" class="centered topSpace">
18+
<ul class="footer__social">
19+
<li><a href="{{ site.githubURL }}"><i class="fab fa-github" aria-hidden="true"></i></a></li>
20+
<li><a href="{{ site.twitterURL }}"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>
21+
<li><a href="{{ site.instagramURL }}"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
22+
</ul>
23+
1824

19-
<a class=" topSpace bottomSpace" href="https://github.com/MoralCode/ClassClock">View on GitHub</a>
20-
<a class=" topSpace" href="https://join.slack.com/t/classclock/shared_invite/enQtNTE0MDkyNzAwNzU3LWNhMGUwODU2ZjhkYTYxMTgzNDE1OWEyMGY2OGNiNTBhOWM5NDVhZGUzNDVlNzRiZTE3NTNmODFjYWNkNDhmMDU">Come chat on Slack!</a><br>
2125
<p id="credits" class="">
26+
Created by: <a href="https://www.adriancedwards.com">Adrian Edwards</a> and
27+
<a href="https://nbdeg.com/">Nick DeGroot</a><br>
2228
Idea by: <a href="https://twitter.com/MrKumprey">Dan Kumprey</a>
23-
<br>Created by: <a href="https://www.adriancedwards.com">Adrian Edwards</a> and
24-
<a href="https://nbdeg.com/">Nick DeGroot</a>
25-
<br><a href="https://github.com/MoralCode/ClassClock/graphs/contributors">Contributors</a>
2629
</p>
2730
</section>
2831

style.css

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,39 @@ section#options > * {
158158
.verticalFlex {
159159
display: flex;
160160
flex-direction: column;
161-
}
161+
}
162+
163+
164+
.footer__social {
165+
list-style: none;
166+
margin: 0;
167+
}
168+
169+
.footer__social li {
170+
display: inline-block;
171+
font-size: 15px;
172+
padding: 0;
173+
margin-right: 12px;
174+
}
175+
176+
.footer__social li a {
177+
display: block;
178+
font-size: 48px;
179+
/* line-height: 32px; */
180+
text-align: center;
181+
/* background-color: rgba(255, 255, 255, 0.03); */
182+
color: #ffffff;
183+
/* border-radius: 50%; */
184+
}
185+
186+
.footer__social li a:hover,
187+
.footer__social li a:focus,
188+
.footer__social li a:active {
189+
/* background-color: #5b4f96; */
190+
color: #c7c7c7;
191+
font-weight: normal;
192+
}
193+
194+
.footer__social li:last-child {
195+
margin-right: 0;
196+
}

0 commit comments

Comments
 (0)