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; */
.image-container {
float : left;
position : absolute;
overflow : hidden;
width : 100%;
top : 0;
left : 0;
width : 100%;
img {
max-height : 100%;
max-width : 100%;
}
}
.image-set {
position : absolute;
top : 0;
left : 0;
clear : all;
}
}
/* larger declarations */

View file

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