Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit ea9804f

Browse files
author
Nick Litwin
committedNov 9, 2015
Move footer links to bottom of mobile nav, style white
1 parent cdc78a7 commit ea9804f

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed
 

‎app/layout/footer/footer.jade

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,25 @@ footer.bottom-footer
22
// Footer links
33
nav.menu-item
44
.menu-item-header.show-small OTHERS
5+
56
ul.submenu
6-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="/sitemap") SITEMAP]
7-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="/about") ABOUT US]
8-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="/contact-us") CONTACT US]
9-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="https://help.{{domain}}" target="_blank") HELP CENTER]
10-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="https://www.{{domain}}/community/how-it-works/privacy-policy/") PRIVACY POLICY]
11-
li.submenu-item #[a.menu-link(ng-click="$event.stopPropagation();" href="https://www.{{domain}}/community/how-it-works/terms/") TERMS]
7+
li.submenu-item #[a.menu-link(ng-href="https://www.{{domain}}/sitemap") SITE MAP]
8+
li.submenu-item #[a.menu-link(ng-href="https://www.{{domain}}/about") ABOUT US]
9+
li.submenu-item #[a.menu-link(ng-href="https://www.{{domain}}/contact-us") CONTACT US]
10+
li.submenu-item #[a.menu-link(ng-href="https://help.{{domain}}" target="_blank") HELP CENTER]
11+
li.submenu-item #[a.menu-link(ng-href="https://www.{{domain}}/community/how-it-works/privacy-policy/") PRIVACY POLICY]
12+
li.submenu-item #[a.menu-link(ng-href="https://www.{{domain}}/community/how-it-works/terms/") TERMS]
1213

1314
// Social links
1415
.social-links
1516
p Topcoder is also on
17+
1618
a.fb-link(href="https://www.facebook.com/topcoder" target="fbwindow")
19+
1720
a.twitter-link(href="http://www.twitter.com/topcoder" target="twwindow")
21+
1822
a.linkedin-link(href="https://www.linkedin.com/company/topcoder" target="liwindow")
23+
1924
a.google-link(href="https://plus.google.com/u/0/b/104268008777050019973/104268008777050019973/posts" target="gpwindow")
2025

2126
p.copyright-notice © 2015 Topcoder. All Rights Reserved

‎assets/css/layout/footer.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,19 @@
7171
height: 27px;
7272
}
7373
}
74+
75+
.bottom-footer nav {
76+
position: absolute;
77+
top: 997px;
78+
left: 0;
79+
width: 100%;
80+
padding: 20px;
81+
background-color: $gray-darkest;
82+
83+
ul a {
84+
color: $white;
85+
}
86+
}
7487
}
7588

7689
@media only screen and (min-width : 1025px) {

0 commit comments

Comments
 (0)
This repository has been archived.