Skip to content

Commit 483ff99

Browse files
author
Becky Sroufe
committed
Footer contact links + styling
1 parent 71e35af commit 483ff99

File tree

7 files changed

+88
-39
lines changed

7 files changed

+88
-39
lines changed
+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1-
Copyright © 2014 Engine, Inc.
1+
<h4>Contact Us</h4>
2+
<div class="contact-links">
3+
<a href="https://www.facebook.com/groups/plugnplaymarketplace/" target="_blank" data-bypass>
4+
<i class="fa fa-facebook-square fa-2x"></i>
5+
</a>
6+
<a href="https://twitter.com/APIengineco" target="_blank" data-bypass>
7+
<i class="fa fa-twitter-square fa-2x"></i>
8+
</a>
9+
<a href="https://angel.co/api-network" class="angellist" target="_blank" data-bypass>
10+
</a>
11+
</div>
212
<!--
313
<a href="legal">Legal</a>
414
<a href="tos">Terms of Service</a>
515
<a href="privacy">Privacy</a>
616
-->
7-
<a href="contact">Contact</a>
17+
<h6>Copyright &copy; 2014 Engine, Inc.</h6>

app/app-js/modules/welcome/welcome.view.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ <h1>Let's Get Started!</h1>
99
For more information, check out our github repo: <a href="https://github.com/LDEngine/Engine-Data-Module" target="_blank">https://github.com/LDEngine/Engine-Data-Module</a>
1010
</div>
1111

12-
<h1>
12+
<h1 class="register-app">
1313
Register Your App:
14-
<button class="btn-gray btn-register-app btn-lg"></button>
14+
<button class="btn-gray btn-lg"></button>
1515
</h1>
1616

1717
<div class="import-data-modules">

app/img/angellist-apiblue.png

5.44 KB
Loading

app/img/angellist.png

10.4 KB
Loading

app/less/dashboard.less

+22-14
Original file line numberDiff line numberDiff line change
@@ -127,27 +127,35 @@
127127
}
128128

129129
// Welcome Page
130-
.btn-register-app {
131-
&:extend(.btn-lg all);
130+
.register-app {
131+
border-bottom: 0;
132132

133-
width: 25%;
134-
text-align: center;
133+
button {
134+
&:extend(.btn-lg all);
135135

136-
&:before {
137-
content: "Register Your App!";
138-
}
136+
width: 204px;
137+
text-align: center;
138+
139+
&:before {
140+
content: "Register Your App!";
141+
}
139142

140-
&:hover {
141-
&:extend(.btn-green all, .btn-lg);
143+
&:hover {
144+
&:extend(.btn-green all, .btn-lg);
142145

143-
.transition(background .25s ease-in-out, border .25s ease-in-out;);
146+
.transition(background .25s ease-in-out, border .25s ease-in-out;);
144147

145-
&:before {
146-
content: "Coming Soon!";
148+
&:before {
149+
content: "Coming Soon!";
150+
}
147151
}
148-
}
149152

150-
color: @gray-light;
153+
color: @gray-light;
154+
155+
@media (max-width: @screen-xs-min) {
156+
margin: 1% auto;
157+
}
158+
}
151159
}
152160
}
153161

app/less/hosted-apis.less

+51-21
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@import "static.less";
88
@import "try-uri.less";
99

10-
@footer-height: 60px;
10+
@footer-height: 121px;
1111
@brand-apiblue: #007bb6;
1212
@brand-apibluelight: desaturate(lighten(@brand-apiblue, 20%), 45%);
1313
@brand-primary: @brand-apiblue;
@@ -124,38 +124,68 @@ footer {
124124
width: 100%;
125125
line-height: @footer-height;
126126
color: #FFF;
127-
text-indent: 20px;
127+
text-align: center;
128128
background-color: @gray-dark;
129129

130-
a {
131-
padding: 0 0.5%;
130+
h4 {
131+
margin-top: 1%;
132+
margin-bottom: 0;
133+
}
134+
135+
.contact-links {
136+
margin: 1% auto 1.5% auto;
137+
padding: 0;
138+
width: 10%;
139+
height: 2em;
132140

133-
&:first-child {
134-
padding-left: 1%;
141+
@media (min-width: @screen-xs-min) and (max-width: @screen-md-min) {
142+
width: 20%;
135143
}
136-
}
137144

138-
@media screen {
139145
@media (max-width: @screen-xs-min) {
140-
padding-top: 2%;
141-
position:relative;
142-
line-height: (@footer-height / 2);
143-
font-size: 1em;
146+
width: 50%;
147+
}
148+
149+
a {
150+
float: left;
151+
width: 33.3%;
152+
line-height: 1;
153+
height: 2em;
144154
text-align: center;
145155

146-
a {
156+
i {
157+
color: @brand-apibluelight;
158+
}
159+
160+
/* padding: 0 0.5%; &:first-child { padding-left: 1%; } */
161+
}
162+
163+
.angellist {
164+
background: url('../img/angellist-apiblue.png') no-repeat center center;
165+
background-size: 15px;
166+
}
167+
}
147168

148-
&:first-child {
149-
padding: 0
150-
}
169+
@media (max-width: @screen-xs-min) {
170+
padding-top: 2%;
171+
padding-bottom: 1%;
172+
position:relative;
173+
line-height: (@footer-height / 2);
174+
font-size: 1em;
175+
text-align: center;
151176

152-
&:last-child {
153-
padding: 0 0 2% 0;
154-
}
177+
a {
155178

156-
display: block;
157-
padding: 0;
179+
&:first-child {
180+
padding: 0
158181
}
182+
183+
&:last-child {
184+
padding: 0 0 2% 0;
185+
}
186+
187+
display: block;
188+
padding: 0;
159189
}
160190
}
161191
}

app/less/mixins.less

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Mixins
22
// --------------------------------------------------
33

4+
// Declaring left or right border radii
45
.border-left-radius(@radius) {
56
border-top-left-radius: @radius;
67
border-bottom-left-radius: @radius;

0 commit comments

Comments
 (0)