Skip to content

Commit

Permalink
Adds support for thumbnails
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Lesser committed Mar 24, 2010
1 parent 7693bef commit 6aaeed8
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 70 deletions.
39 changes: 25 additions & 14 deletions static/css/wfl.css
Expand Up @@ -26,9 +26,16 @@ body {
overflow:hidden;
}

.advance { position:absolute; top:50%; background-color:#FFF; z-index: 100; height:72px; width:33px;}
#right_advance {right:0; background: #FFF url(/static/images/wfl/right.png) no-repeat;}
#left_advance {left:0; background: #FFF url(/static/images/wfl/left.png) no-repeat;}
.advance {
position:absolute; top:50%;
background-color:#FFF;
z-index: 100;
height:72px;
width:33px;
cursor: pointer;
}
#right_advance {right:0; background: #FFF url(/static/images/wfl/icon_right.png) no-repeat;}
#left_advance {left:0; background: #FFF url(/static/images/wfl/icon_left.png) no-repeat;}

#site_info {
position:absolute;
Expand All @@ -41,28 +48,28 @@ body {
}
#top_nav{
height:34px;
background-color:#FFF;
background-color:#EFEFEF;
position: absolute;
width:100%;
top:0;
left:0;
z-index: 100;
}

.nav_selected{
background-color:#000 !important;
color:#FFF !important;
border-bottom:1px solid #989898;
}

#nav_title, .nav_slide{
border-right:1px solid #989898;
border-bottom:1px solid #989898;
height:100%;
padding-top:6px;
height:28px;
float:left;
text-align:center;
}

#nav_title {}
#nav_title {
padding-left:10px;
padding-right:10px;
background-color:#FFF;
}
.nav_slide {
width:34px;
background-color:#EFEFEF;
Expand All @@ -71,13 +78,15 @@ body {
z-index: 1000;
}
a.nav_slide:hover { background-color:#FFF; }
.nav_selected{ background-color:#000 !important; color:#FFF !important; }

#slide_thumbnail {
position:absolute;
width:220px;
height:165px;
width:208px;
height:156px;
background-color:#FFF;
z-index: 98;
padding:6px;
}

#slide_holder {
Expand Down Expand Up @@ -108,6 +117,7 @@ a.nav_slide:hover { background-color:#FFF; }
line-height:64px;
padding:10px 10px 0px 10px;
background-color:#FFF;
overflow:hidden;
}

.slide_deck{
Expand All @@ -116,6 +126,7 @@ a.nav_slide:hover { background-color:#FFF; }
background-color: #000;
color: #FFF;
height:18px;
max-width:350px;
font-size:18px;
font-style: italic;
padding:6px 10px 10px 10px;
Expand Down
File renamed without changes
Binary file added static/images/wfl/hubble_thumb.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added static/images/wfl/music_thumb.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 50 additions & 51 deletions static/js/wfl.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions templates/wfl.html
Expand Up @@ -19,13 +19,13 @@
<div id="left_advance" class="advance"></div>
<div id="right_advance" class="advance"></div>
<div id="site_info">
<span>Presented by BmoreFiber | Site Credits</span>
<a href="http://www.facebook.com/BmoreFiber"><img src="/static/images/wfl/facebook.png" alt="facebook icon"/></a>
<a href="http://twitter.com/bmorefiber"><img src="/static/images/wfl/twitter.png" alt="twitter icon"/></a>
<a href="http://www.youtube.com/bmorefiber"><img src="/static/images/wfl/youtube.png" alt="youtube icon"/></a>
<span>Presented by BmoreFiber and the Baltimore community</span>
<a href="http://www.facebook.com/BmoreFiber"><img src="/static/images/wfl/icon_facebook.png" alt="facebook icon"/></a>
<a href="http://twitter.com/bmorefiber"><img src="/static/images/wfl/icon_twitter.png" alt="twitter icon"/></a>
<a href="http://www.youtube.com/bmorefiber"><img src="/static/images/wfl/icon_youtube.png" alt="youtube icon"/></a>
</div>
<div id="top_nav">
<span id="nav_title">Top Reasons for Google to Invest in Baltimore</span>
<span id="nav_title">TOP REASONS FOR <span style="color:#6174B9">G</span><span style="color:#DA2826">O</span><span style="color:#EFF136">O</span><span style="color:#6174B9">G</span><span style="color:#27A635">L</span><span style="color:#DA2826">E</span> TO INVEST IN BALTIMORE</span>
<span id="nav_slides"></span>
</div>
<div id="slide_holder"></div>
Expand Down

0 comments on commit 6aaeed8

Please sign in to comment.