| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- // 颜色
- $colors: (
- "primary": #1A5CD7,
- "info-1": #4394e4,
- "info": #4b67af,
- "white": #ffffff,
- "light": #f9f9f9,
- "grey-1": #999999,
- "grey": #666666,
- "dark-1": #5f5f5f,
- "dark": #222222,
- "black-1": #171823,
- "black": #000000,
- "icon": #5cd9e8
- );
- // 字体大小
- $base-font-size: 1rem;
- $font-sizes: (
- //10px
- xs: 0.7692,
- //12px
- sm: 0.9231,
- //md 13px
- md: 1,
- //lg 14px
- lg: 1.0769,
- //xl 16px
- xl: 1.2308
- /*xxs: 0.1,
- //8px
- xs: 0.125,
- //10px
- sm: 0.2875,
- //12px
- md: 0.1625,
- //13px
- lg: 0.175,
- //14px
- xl: 0.2,
- //16px
- xxl: 0.225,
- //18px
- xxxl: 0.25 */
- );
- // 宽高
- .w-100 {
- width: 100%;
- }
- .h-100 {
- height: 100%;
- }
- //flex
- .d-flex {
- display: flex;
- }
- .flex-column {
- flex-direction: column;
- }
- .flex-wrap {
- flex-wrap: wrap;
- }
- .flex-nowrap {
- flex-wrap: nowrap;
- }
- $flex-jc: (
- start: flex-start,
- end: flex-end,
- center: center,
- between: space-between,
- around: space-around,
- evenly: space-evenly,
- );
- $flex-ai: (
- start: flex-start,
- end: flex-end,
- center: center,
- stretch: stretch,
- );
- .flex-1 {
- flex: 1;
- }
- //.mt-1 => margin top
- //spacing
- $spacing-types: (
- m: margin,
- p: padding,
- );
- $spacing-directions: (
- t: top,
- r: right,
- b: bottom,
- l: left,
- );
- $spacing-base-size: 0.5rem;
- $spacing-sizes: (
- 0: 0,
- 1: 0.5,
- 2: 1,
- 3: 1.5,
- 4: 2,
- 5: 2.5,
- );
|