diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 16:53:32 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 16:53:32 -0500 |
commit | be061c84635f986d7d81eae2f45c3f0765bc6711 (patch) | |
tree | 2b49b69864016ad1ec7dbe63deb53679070e5d88 | |
parent | 3ec2e0771e1c64638960a0e78fce91dd63f8351f (diff) | |
parent | f379eb3654fea32d559fcc27b4da1d5e2ff4b0e9 (diff) |
Merge mckenzierobotics.org:html/wp/wp-content/themes/kilabytes
-rw-r--r-- | style.scss | 20 | ||||
-rw-r--r-- | twentyeleven-fix.scss | 3 |
2 files changed, 19 insertions, 4 deletions
@@ -117,10 +117,7 @@ body { } } -@media (max-width: 1050px) { - @include small_branding; -} -@media (max-width: 800px) { +@mixin mobile_branding { body #page header#branding { hgroup { height: auto; @@ -157,3 +154,18 @@ body { } } } + +#ie7, #ie8 { + @include small_branding; +} + +#ie6 { + @include mobile_branding; +} + +@media (max-width: 1050px) { + @include small_branding; +} +@media (max-width: 800px) { + @include mobile_branding; +} diff --git a/twentyeleven-fix.scss b/twentyeleven-fix.scss index bbfa208..0e3f705 100644 --- a/twentyeleven-fix.scss +++ b/twentyeleven-fix.scss @@ -68,4 +68,7 @@ body { body #page header#branding #searchform { @include searchform_wide(1px); } + * { + text-shadow: none !important; + } } |