diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-24 17:32:38 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-24 17:32:38 -0400 |
commit | d10ba20d140ca0a4a0eda1900d66f6c76bbfa883 (patch) | |
tree | 9fa0d9332c0e4b8b2db4f65229a8649383bd69e7 | |
parent | b4584bd01cce557d98c8cb738da0a87e2d8dd0c5 (diff) | |
download | my_new_personal_website-d10ba20d140ca0a4a0eda1900d66f6c76bbfa883.tar.xz my_new_personal_website-d10ba20d140ca0a4a0eda1900d66f6c76bbfa883.zip |
improved consistency of video and image block styling
-rw-r--r-- | .themes/classic/sass/partials/_blog.scss | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/.themes/classic/sass/partials/_blog.scss b/.themes/classic/sass/partials/_blog.scss index 64ec3aa1..8d9d5f80 100644 --- a/.themes/classic/sass/partials/_blog.scss +++ b/.themes/classic/sass/partials/_blog.scss @@ -43,37 +43,23 @@ article { font-size: 2.0em; font-style: italic; line-height: 1.3em; } - img { + img, video, .flash-video { max-width: 100%; + height: auto; border: .5em solid #fff; @include border-radius(.3em); @include box-shadow(rgba(#000, .15) 0 1px 4px); @include box-sizing(border-box); display: block; margin: 0 auto 1.5em; - &.left { - float: left; - margin-right: 1.5em; - } - &.right { - float: right; - margin-left: 1.5em; - } - &.left, &.right { - margin-bottom: .8em; - } } - img, video { max-width: 100%; height: auto; } - video { - width: 100%; display: block; margin-bottom: 1.5em; - padding: .8em; background: #fff; border: 1px solid #eee; - @include box-sizing(border-box); + img { + &.left { float: left; margin-right: 1.5em; } + &.right { float: right; margin-left: 1.5em; } + &.left, &.right { margin-bottom: .8em; } } + video { display: block; margin-bottom: 1.5em; width: 100%; } .flash-video { - max-width: 100%; - margin-bottom: 1.5em; - @include box-sizing(border-box); - padding: .8em; background: #fff; border: 1px solid #eee; > div { position: relative; display: block; |