Merge remote branch 'kanaka/master' into mobile

This commit is contained in:
Joel Martin
2011-09-08 08:50:18 -05:00
3 changed files with 108 additions and 34 deletions

29
include/mobile.css Normal file
View File

@@ -0,0 +1,29 @@
.fullscreen {
display: block;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 9999;
margin: 0;
padding: 0;
}
.flex-layout {
display: box;
display: -webkit-box;
display: -moz-box;
display: -ms-box;
box-orient: vertical;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-ms-box-orient: vertical;
}
.flex-box {
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-ms-box-flex: 1;
}