1. Removed pullquote and improved semantics of blockquote plugin.

2. Removed iterator plugin as it was not being used.
3. Added initial support for html5 video with flash fallback.
4. Added responsive scaling for embedded youtube and vimeo videos.
5. Improved footer styleing.
This commit is contained in:
Brandon Mathis
2011-06-13 16:41:03 -04:00
parent 913fa105c4
commit 929e606111
7 changed files with 386 additions and 110 deletions

View File

@ -35,7 +35,30 @@ $border: inline-image('dotted-border.png');
}
}
.entry-content {
img { max-width: 100%; }
img, video { max-width: 100%; height: auto; }
video { display: block; margin-bottom: 1.5em;
padding: .8em; background: #fff; border: 1px solid #eee;
@include box-sizing(border-box);
}
.flash-video {
max-width: 100%;
padding: .8em; background: #fff; border: 1px solid #eee;
> div {
position: relative;
display: block;
padding-bottom: 56.25%;
padding-top: 1px;
height: 0;
overflow: hidden;
iframe, object, embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
}
}
#disqus_thread { }
.meta {

View File

@ -9,6 +9,8 @@ body > footer {
position: relative;
padding-top: 1em;
padding-bottom: 1em;
margin-bottom: 3em;
@include border-bottom-radius(.4em);
z-index: 1;
a {
@include link-colors($nav-color, $nav-color-hover);