@pi0/framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
39 lines (37 loc) • 825 B
text/less
.ios {
@import (multiple) '../../less/colors-ios.less';
body {
font-family: -apple-system, SF UI Text, Helvetica Neue, Helvetica, Arial, sans-serif;
color: #000;
line-height: 1.4;
}
.md-only, .if-md {
display: none;
}
a {
color: @themeColor;
}
// Fix for iPad in Safari in Lanscape mode
@media all and (width:1024px) and (height:691px) and (orientation:landscape) {
&, & body, & .framework7-root {
height: 671px;
}
}
@media all and (width:1024px) and (height:692px) and (orientation:landscape) {
&, & body, & .framework7-root {
height: 672px;
}
}
.color-theme-loop({
.color-theme-@{colorThemeName} {
a {
color: @colorThemeValue;
}
}
});
.color-loop({
a.color-@{colorName} {
color: @colorValue;
}
});
}