12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @charset "utf-8";
- // container
- $container-width: 1196px;
- $body-bg: #eee;
- $grey-bg: #f7f7f7;
- $dark-bg: rgba(197,197,197,0.4);
- $module-bg: rgba(255,255,255,0.6);
- $module-hover-bg: $dark-bg;
- $skin-bg: #149ccf;
- //Other
- $radius: 2px;
- //Basic stylings
- $br: 4px;
- $xs-pad: 4px;
- $sm-pad: 8px;
- $pad: 1em;
- $md-pad: 1.2em;
- $lg-pad: 1.5em;
- $xlg-pad: 3em;
- $trans: .3s;
- //Breakpoints
- $small-breakpoint: 400px;
- $large-breakpoint: $container-width;
- //Colors
- $primary: #5078CB;
- $accent: #1162a4;
- $red: #f44336;
- $yellow: #ffeb3b;
- $dark: #999;
- $grey: rgb(230, 230, 230);
- $gray: #666;
- $grey-light: #efefef;
- $white: #fff;
- $black: #000;
- $black-light: #dce1e9;
- //Text
- $text: $black-light;
- $secondary: rgba(0, 0, 0, .54);
- $disabled: rgba(0, 0, 0, .38);
- $dividers: #e3e3e3;
- //Links
- $link-color: $text;
- $link-hover-color: darken($link-color, 20%);
- //Font
- $font-family: "Microsoft YaHei",serif;
- //Typography
- $font-size-small: 12px;
- $font-size: 14px;
- $font-size-large: 1.2rem;
- $font-size-h1: 2rem;
- $font-size-h2: 1.75rem;
- $font-size-h3: 1.5rem;
- $font-size-h4: 1.2rem;
- $font-size-h5: 1rem;
- $font-size-h6: $font-size-small;
- $line-height: 1.2;
- $border: 1px solid $dividers;
|