Skip to content

Commit

Permalink
finished styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sheltowt committed Jun 16, 2013
1 parent 2be38f5 commit 46648c0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
Binary file added .DS_Store
Binary file not shown.
12 changes: 12 additions & 0 deletions adWords/public/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,16 @@ b,

.x.axis path {
display: none;
}

.consumer_intelligence_text {
position: fixed;
right: 150px;
top:10px;
}

.quality_score_text {
position: fixed;
right: 150px;
top:10px;
}
10 changes: 5 additions & 5 deletions adWords/public/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ var CampaignProfitView = Backbone.View.extend({
var $tabNotes = $('<div id="tabNotes"></div>')
$('#tabs').append($tabNotes);
$('#tabNotes').append(('<ul type="circle">' +
'<li><div>Pause Red</div></li>' +
'<li><div>Increase bids on Blue</div></li>' +
'<li><div>Pause bids on red words</div></li>' +
'<li><div>Increase bids on blue words</div></li>' +
'</ul>'
));
}
Expand Down Expand Up @@ -84,8 +84,8 @@ var ConsumerIntelligenceView = Backbone.View.extend({
if(!$('#tabNotes').length){
var $tabNotes = $('<div id="tabNotes"></div>')
$('#tabs').append($tabNotes);
$('#tabNotes').append(('<ul type="circle">' +
'<li><div>Increase volume on "Cat the Hat"</div></li>' +
$('#tabNotes').append(('<ul class="consumer_intelligence_text">' +
'<li><div>Increase volume on "cat the hat"</div></li>' +
'<li><div>Pause all others</div></li>' +
'</ul>'
));
Expand Down Expand Up @@ -121,7 +121,7 @@ var QualityScoreView = Backbone.View.extend({
if(!$('#tabNotes').length){
var $tabNotes = $('<div id="tabNotes"></div>')
$('#tabs').append($tabNotes);
$('#tabNotes').append(('<ul type="circle">' +
$('#tabNotes').append(('<ul class="quality_score_text">' +
'<li><div>Understand the two different types of lists</div></li>' +
'<li><div>Understand embedded bullet lists</div></li>' +
'<li><div>Ensuring W3C Compliance</div></li>' +
Expand Down

0 comments on commit 46648c0

Please sign in to comment.