summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/app/shared/_handheld.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/app/shared/_handheld.scss')
-rw-r--r--app/assets/stylesheets/app/shared/_handheld.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/stylesheets/app/shared/_handheld.scss b/app/assets/stylesheets/app/shared/_handheld.scss
new file mode 100644
index 0000000..1efc5e9
--- /dev/null
+++ b/app/assets/stylesheets/app/shared/_handheld.scss
@@ -0,0 +1,25 @@
+//
+// Media queries for responsive design.
+//
+// These follow after primary styles so they will successfully override.
+//
+
+@media all and (orientation:portrait) {
+ // Style adjustments for portrait mode goes here
+
+}
+
+@media all and (orientation:landscape) {
+ // Style adjustments for landscape mode goes here
+
+}
+
+// Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
+// consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/
+@media screen and (max-device-width: 480px) {
+
+
+ // Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust
+ // html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; }
+}
+