framework7-without-localstorage
Version:
Full featured mobile HTML framework for building iOS & Android apps
49 lines (47 loc) • 1.02 kB
text/less
@imgBaseUrl: "../img";
html, body, .framework7-root {
position: relative;
height: 100%;
width: 100%;
overflow-x: hidden;
}
body {
font-family: -apple-system, SF UI Text, Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
color: #000;
font-size: 14px;
line-height: 1.4;
width: 100%;
-webkit-text-size-adjust:100%;
background: #fff;
overflow: hidden;
}
.framework7-root {
overflow: hidden;
}
// Fix for iPad in Safari in Lanscape mode
@media all and (width:1024px) and (height:691px) and (orientation:landscape) {
html, body, .framework7-root {
height: 671px;
}
}
@media all and (width:1024px) and (height:692px) and (orientation:landscape) {
html, body, .framework7-root {
height: 672px;
}
}
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout:none;
}
a, input, textarea, select {
outline: 0;
}
a {
text-decoration: none;
color: @themeColor;
}
p {
margin: 1em 0;
}