I added new properties at the '.home-tagline h2' selector (style.css:220).

I also added a new selector '.home-tagline h2 strong' and removed the inline style of the javascript string (app.js:17).
This commit is contained in:
Daniel Camargo 2013-01-21 14:27:01 -02:00
parent 3961cdc60c
commit c08cfeed8f
2 changed files with 8 additions and 1 deletions

View File

@ -218,8 +218,15 @@ body {
} }
.home-tagline h2 { .home-tagline h2 {
color: #333;
font-weight: 400;
margin-bottom: .6em; margin-bottom: .6em;
} }
.home-tagline h2 strong{
display: block;
font-weight: bold;
margin-top: 10px;
}
.home-welcome h2 { .home-welcome h2 {
margin-bottom: 1.5em; margin-bottom: 1.5em;

View File

@ -14,7 +14,7 @@ var App = {
slogans: ['Push a button. Get Food.'], slogans: ['Push a button. Get Food.'],
tagline: 'Order the top food %s. For free. <br /> \ tagline: 'Order the top food %s. For free. <br /> \
After you order, everything is saved for future 1 click ordering. <br /> \ After you order, everything is saved for future 1 click ordering. <br /> \
<strong style="display: block; margin-top: 10px;">Choose a restaurant:</strong> \ <strong>Choose a restaurant:</strong> \
', ',
service: '/api/', service: '/api/',
cached: {}, cached: {},