Skip to content

Commit

Permalink
scale
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjorgensen committed Mar 29, 2012
1 parent 6f209dc commit eac8bc0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ h3 {
#data {
margin-top: 20px;
.dots {
margin-left: 238px;
margin-left: 253px;
margin-top: 20px;
}
}
Expand Down
13 changes: 11 additions & 2 deletions html/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@
var before = {
data : function(old, li) {
index.data = $(li).attr('id');

$.each($('#data h4'), function(i, item) {
color = '#434343';
if(i == index.data) {
color = '#BB2261';
}
$(item).css({color: color});
});

$.each($('#data .dots li'), function(i, item) {
color = 'lightgray';
if(i == index.data) {
Expand Down Expand Up @@ -208,9 +217,9 @@ <h4>Connect the rest of your life</h4>
<!--<li class='portrait'><div><img src="/img/screens/data-expand.png" height="450" alt="Slide 2"></div></li>
<li class='portrait'><div><img src="/img/screens/data-low.png" height="450" alt="Slide 2"></div></li>
<li class='portrait'><div><img src="/img/screens/data-count.png" height="450" alt="Slide 2"></div></li>-->
<!--<li id='1' class='portrait'><div><img style='margin-left: -110px;' src="/img/screens/data-spiral.png" height="450" alt="Slide 2"></div></li>-->
<li id='1' class='landscape'><div><img src="/img/screens/data-graph.png" height="240" alt="Slide 3"></div></li>
<li id='2' class='portrait'><div><img style='margin-left: -110px;' src="/img/screens/data-spiral.png" height="450" alt="Slide 2"></div></li>
<li id='3' class='portrait'><div><img src="/img/screens/connect3.png" height="450" alt="Slide 2"></div></li>
<li id='2' class='portrait'><div><img src="/img/screens/connect3.png" height="450" alt="Slide 2"></div></li>
</ul>
<ul class='dots'>
</ul>
Expand Down

0 comments on commit eac8bc0

Please sign in to comment.