Skip to content

Commit ce39c25

Browse files
committed
more tweaks to the footer
1 parent 17250e1 commit ce39c25

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description: > # this means to ignore newlines until "baseurl:"
55
Programming language enthusiasts from Indiana University
66
baseurl: "" # the subpath of your site, e.g. /blog/
77
url: "http://wonks.github.io" # the base hostname & protocol for your site
8+
github_username: wonks
89
plugins:
910
- jekyll-paginate
1011
paginate_path: "/talks/page:num/"

_sass/_layout.scss

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -204,17 +204,6 @@
204204
}
205205
}
206206

207-
@media screen and (max-width: $on-palm) {
208-
.footer-col-1,
209-
.footer-col-3 {
210-
display: none;
211-
}
212-
213-
.footer-col-2 {
214-
width: 100%;
215-
}
216-
}
217-
218207
@media screen and (min-width: $on-medium) {
219208
.footer-col-wrapper {
220209
display: flex

css/main.scss

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,3 +246,29 @@ iframe {
246246
font-weight: bold;
247247
font-family: Georgia, "Garamond", "Times New Roman", serif;
248248
}
249+
250+
// Footer column alignment
251+
.footer-col-1 {
252+
text-align: left;
253+
}
254+
255+
.footer-col-2 {
256+
text-align: center;
257+
}
258+
259+
.footer-col-3 {
260+
text-align: right;
261+
}
262+
263+
// Declutter footer on phones
264+
@media screen and (max-width: $on-palm) {
265+
.footer-col-1,
266+
.footer-col-3,
267+
.social-media-list {
268+
display: none;
269+
}
270+
271+
.footer-col-2 {
272+
width: 100%;
273+
}
274+
}

0 commit comments

Comments
 (0)