Skip to content

Commit

Permalink
fixing image paths in css
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Delegard committed Jan 29, 2014
1 parent d12a75d commit 0c77ec4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions css/style.css
Expand Up @@ -138,39 +138,39 @@ h2:before {
margin: 0 auto;
}
#story h2:before {
background: url(images/story_icon.png) no-repeat;
background: url(../images/story_icon.png) no-repeat;
background-size: 31px 31px;
}
.lt-ie9 #story h2:before {
background: url(images/story_icon_small.png) no-repeat;
background: url(../images/story_icon_small.png) no-repeat;
}
#photos h2:before {
background: url(images/photos_icon.png) no-repeat;
background: url(../images/photos_icon.png) no-repeat;
background-size: 31px 31px;
}
.lt-ie9 #photos h2:before {
background: url(images/photos_icon_small.png) no-repeat;
background: url(../images/photos_icon_small.png) no-repeat;
}
#party h2:before {
background: url(images/party_icon.png) no-repeat;
background: url(../images/party_icon.png) no-repeat;
background-size: 31px 31px;
}
.lt-ie9 #party h2:before {
background: url(images/party_icon_small.png) no-repeat;
background: url(../images/party_icon_small.png) no-repeat;
}
#info h2:before {
background: url(images/info_icon.png) no-repeat;
background: url(../images/info_icon.png) no-repeat;
background-size: 31px 31px;
}
.lt-ie9 #info h2:before {
background: url(images/info_icon_small.png) no-repeat;
background: url(../images/info_icon_small.png) no-repeat;
}
#instagram h2:before {
background: url(images/instagram_icon.png) no-repeat;
background: url(../images/instagram_icon.png) no-repeat;
background-size: 31px 31px;
}
.lt-ie9 #instagram h2:before {
background: url(images/instagram_icon.png) no-repeat;
background: url(../images/instagram_icon.png) no-repeat;
}
h3 {
color: #444;
Expand All @@ -195,7 +195,7 @@ h3 {
filter:alpha(opacity=100)!important;
}
.loader {
background-image: url(images/loader_page.gif);
background-image: url(../images/loader_page.gif);
background-position: center center;
background-repeat: no-repeat;
background-size: 50px 50px;
Expand Down Expand Up @@ -829,7 +829,7 @@ footer p a:hover {
#sb-body img{border:none;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{height: 100%; background-image: url(images/loader_gallery.gif);background-size: 50px 50px; background-repeat: no-repeat;background-position: center center; background-size: 50px 50px;}
#sb-loading-inner{height: 100%; background-image: url(../images/loader_gallery.gif);background-size: 50px 50px; background-repeat: no-repeat;background-position: center center; background-size: 50px 50px;}
#sb-loading-inner span{display:none;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
Expand All @@ -839,9 +839,9 @@ footer p a:hover {
#sb-nav{float:right;height:28px;padding:6px 0;width:45%;}
#sb-nav a{display:block;float:right;height:28px;width:28px;margin-left:6px;cursor:pointer;background-repeat:no-repeat;opacity: 1;filter:alpha(opacity=100);-webkit-transition: opacity .3s ease;-moz-transition: opacity .3s ease;-ms-transition: opacity .3s ease;-o-transition: opacity .3s ease;transition: opacity .3s ease;}
#sb-nav a:hover{opacity: .5;filter:alpha(opacity=50);}
#sb-nav-close{background-image:url(images/gallery_close.png);}
#sb-nav-next{background-image:url(images/gallery_next.png);}
#sb-nav-previous{background-image:url(images/gallery_prev.png);}
#sb-nav-close{background-image:url(../images/gallery_close.png);}
#sb-nav-next{background-image:url(../images/gallery_next.png);}
#sb-nav-previous{background-image:url(../images/gallery_prev.png);}
#sb-counter{float:left;width:45%;display:none;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
Expand Down Expand Up @@ -961,19 +961,19 @@ div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underl
margin-right: 0;
}
#story h2:before {
background: url(images/story_icon_small.png) no-repeat;
background: url(../images/story_icon_small.png) no-repeat;
}
#photos h2:before {
background: url(images/photos_icon_small.png) no-repeat;
background: url(../images/photos_icon_small.png) no-repeat;
}
#party h2:before {
background: url(images/party_icon_small.png) no-repeat;
background: url(../images/party_icon_small.png) no-repeat;
}
#info h2:before {
background: url(images/info_icon_small.png) no-repeat;
background: url(../images/info_icon_small.png) no-repeat;
}
#instagram h2:before {
background: url(images/instagram_icon_small.png) no-repeat;
background: url(../images/instagram_icon_small.png) no-repeat;
}

}
Expand Down
Binary file removed images/favicon.ico
Binary file not shown.

0 comments on commit 0c77ec4

Please sign in to comment.