| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /***********************************************************************************/
- /**************************************utils/setting********************************/
- /***********************************************************************************/
- @import './themes/default.less'; // 主题设置
- @import './mixins.less'; // 常用函数
- @import './anim.less'; // 动画
- /***********************************************************************************/
- /**************************************common***************************************/
- /***********************************************************************************/
- @import './common/index.less'; // 常用布局
- /***********************************************************************************/
- /**************************************component************************************/
- /***********************************************************************************/
- @import './components/flex/index.less'; // flex
- @import './components/grid/index.less'; // grid
- @import './components/modal/index.less'; // modal
- @import './components/white-space/index.less'; // white-space
- @import './components/wing-blank/index.less'; // wing-blank
- @import './components/list/index.less'; // list
- /***********************************************************************************/
- /**************************************reset.css************************************/
- /***********************************************************************************/
- *,
- *:before,
- *:after {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- page {
- background-color: @fill-body;
- font-size: @font-size-base;
- font-family: -apple-system, 'SF UI Text', Roboto, Noto, 'Helvetica Neue',
- Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑',
- Arial, sans-serif;
- }
- view,
- scroll-view,
- swiper,
- button,
- input,
- textarea,
- label,
- navigator,
- image {
- box-sizing: border-box;
- }
- *:focus {
- outline: none;
- }
|