# Frontend-OASIS **Repository Path**: dXmo/frontend-oasis ## Basic Information - **Project Name**: Frontend-OASIS - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-26 - **Last Updated**: 2021-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ui ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### 字体编排 ```css // 标题用字体 font-family: 'Source Sans Pro', sans-serif; // 不重要字符串 font-family: 'Nunito', sans-serif; // 长文本字符串、通常文本字符串 font-family: 'Lato', sans-serif; // 外部显示(默认不显示的内容) font-family: 'Poppins', sans-serif; // 数字 font-family: 'Texturina', serif; // 人、机构 font-family: 'Merriweather Sans', sans-serif; ``` ### 页面自适应宽度 #### Author ```css @media screen and (max-width: 1280px) { } @media screen and (max-width: 850px) { } @media screen and (max-width: 500px) { } ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/).