remove some old small frame declarations [ci skip]

This commit is contained in:
danielgrippi 2012-04-21 22:25:37 -07:00
parent ab7ac667d8
commit 265e14fb13
2 changed files with 9 additions and 12 deletions

View file

@ -68,21 +68,20 @@ body {
/* used in masking photos with overflow: hidden; */ /* used in masking photos with overflow: hidden; */
.image-container { .image-container {
float : left; position : absolute;
overflow : hidden; overflow : hidden;
width : 100%;
top : 0;
left : 0;
width : 100%;
img { img {
max-height : 100%; max-height : 100%;
max-width : 100%; max-width : 100%;
} }
} }
.image-set {
position : absolute;
top : 0;
left : 0;
clear : all;
}
} }
/* larger declarations */ /* larger declarations */

View file

@ -1,11 +1,9 @@
<div class="content"> <div class="content">
{{#if photos}} {{#if photos}}
<div class="image-set">
{{#each photos}}
<div class="image-container"> <div class="image-container">
{{#each photos}}
<img src="{{sizes.large}}" /> <img src="{{sizes.large}}" />
</div>
{{/each}} {{/each}}
</div> </div>
{{/if}} {{/if}}