summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 13:54:04 -0800
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 13:54:04 -0800
commitf379eb3654fea32d559fcc27b4da1d5e2ff4b0e9 (patch)
tree53184e5883d1c01106e7e7e56bddc7f8aeab6efa
parentdab2c8b55c4cad26e935ec9a453a1af1c6698457 (diff)
This is what was sitting on the server
-rw-r--r--style.scss20
-rw-r--r--twentyeleven-fix.scss3
2 files changed, 19 insertions, 4 deletions
diff --git a/style.scss b/style.scss
index 0b6033c..ef9e08d 100644
--- a/style.scss
+++ b/style.scss
@@ -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;
+ }
}