1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- @import url(./variables.less);
- @import url(./mixins.less);
- html,body{
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- height: 100%;
- overflow-y: hidden;
- -webkit-overflow-scrolling: touch;
- color: @text-common-color;
- background-color: @bg-gary;
- }
- #app {
- height: 100%;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- position: relative;
- }
- // reset base.
- .container {
- padding: 0 6px;
- }
- .p-h-12 {
- padding-left: 12px;
- padding-right: 12px;
- }
- .btnbox {
- width: 100%;
- font-size: @text-common-size;
- line-height: 40px;
- text-align: center;
- border-radius: 9px;
- background-color: @main-color;
- color: @white;
- }
- .fajc () {
- &-aic {
- align-items: center;
- }
- &-acc {
- align-content: center;
- }
- &-jic {
- justify-items: center;
- }
- &-jcc {
- justify-content: center;
- }
- }
- .flex {
- display: flex;
- &-row {
- flex-direction: row;
- .fajc()
- }
- &-col {
- flex-direction: column;
- .fajc()
- }
- &-0shrink {
- flex-shrink: 0;
- }
- }
- // 单行省略号
- .ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- // 双行省略号
- .ellipsis-2rows {
- text-overflow: -o-ellipsis-lastline;
- .ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- white-space: initial;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
|