Skip to content

Commit

Permalink
Add styling for birds eye view and add reply to contact
Browse files Browse the repository at this point in the history
  • Loading branch information
louisscruz committed Mar 14, 2016
1 parent b45c907 commit 571cf41
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions client/app/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ input[type="text"], input[type="url"], input[type="number"], input[type="passwor
color: lighten($black, 10) !important;
}
}

.list-group-item {
background-color: #81758C !important;
}
// App Structure
.browsehappy {
margin: 0.2em 0;
Expand Down
10 changes: 5 additions & 5 deletions client/app/birdseyeview/birdseyeview.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ <h1 class="center">A Bird's Eye View</h1>
</div>
<div class="col-sm-12 text col-md-8 col-md-offset-2 info">
<p><b>A Bird’s Eye View</b> is a short 16 mm animated film in which a man sends a rainbow-winged bird far beyond the clouds on an unusual adventure.</p>
<div class="center">
<p>Produced, directed and animated by Deborah Short</p>
<p>Piano adaptation of Chopin’s Waltz in E flat opus 18 by Ethel Wadsworth</p>
<p>Score, synthesizer, sound effects and mix by Loren Jones</p>
</div>
<ul class="list-group">
<li class="list-group-item">Produced, directed and animated by Deborah Short</li>
<li class="list-group-item">Piano adaptation of Chopin’s Waltz in E flat opus 18 by Ethel Wadsworth</li>
<li class="list-group-item">Score, synthesizer, sound effects and mix by Loren Jones</li>
</ul>
<h3>Honors:</h3>
<ul>
<li>1981 Winner Academy Award for Animation</li>
Expand Down
1 change: 0 additions & 1 deletion client/app/birdseyeview/birdseyeview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
font-size: 18px;
font-weight: 300;
}

}
3 changes: 2 additions & 1 deletion server/api/contact/contact.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ var transporter = nodemailer.createTransport({

exports.sendMail = function(req, res) {
var data = req.body;
var content = data.message + ': Reply to ' + data.name + ' at ' + data.email;
var mailOptions = {
from: data.email,
to: '[email protected]',
subject: 'Message from ' + data.name,
text: data.message
text: content
};

transporter.sendMail(mailOptions, function(error, info) {
Expand Down

0 comments on commit 571cf41

Please sign in to comment.