///////////////// // positions //////////////// $all: top right bottom left !default $horizontal: left right !default $vertical: top bottom !default ///////////////// // layout //////////////// $container-class-name: container !default $container-max-width: 1100px !default $container-horizontal-padding: 16px !default ///////////////// // selection //////////////// $selection-bg-color: black !default $selection-tx-color: white !default $input-selection-bg-color: lightgray !default $input-selection-tx-color: black !default ///////////////// // text-color //////////////// $bright-text-color: white !default $dark-text-color: black !default $ruma-threshold: 100 / pi() !default ///////////////// // grids //////////////// // screens //== Media queries breakpoints //## Define the breakpoints at which your layout will change, adapting to different screen sizes. // Extra small screen / phone //** Deprecated `$screen-xs` as of v3.0.1 $screen-xs: 480px !default //** Deprecated `$screen-xs-min` as of v3.2.0 $screen-xs-min: $screen-xs !default //** Deprecated `$screen-phone` as of v3.0.1 $screen-phone: $screen-xs-min !default // Small screen / tablet //** Deprecated `$screen-sm` as of v3.0.1 $screen-sm: 768px !default $screen-sm-min: $screen-sm !default //** Deprecated `$screen-tablet` as of v3.0.1 $screen-tablet: $screen-sm-min !default // Medium screen / desktop //** Deprecated `$screen-md` as of v3.0.1 $screen-md: 992px !default $screen-md-min: $screen-md !default //** Deprecated `$screen-desktop` as of v3.0.1 $screen-desktop: $screen-md-min !default // Large screen / wide desktop //** Deprecated `$screen-lg` as of v3.0.1 $screen-lg: 1200px !default $screen-lg-min: $screen-lg !default //** Deprecated `$screen-lg-desktop` as of v3.0.1 $screen-lg-desktop: $screen-lg-min !default // So media queries don't overlap when required, provide a maximum $screen-xs-max: ($screen-sm-min - 1) !default $screen-sm-max: ($screen-md-min - 1) !default $screen-md-max: ($screen-lg-min - 1) !default $screen-lg-max: ($screen-lg-min - 1) !default // 横一列の最大カラム数 $grid-columns: 12 !default // カラムとカラムの間のスペース $grid-gutter-width: 32px //== Container sizes //## Define the maximum width of `.container` for different screen sizes. // Small screen / tablet $container-tablet: (720px + $grid-gutter-width) !default //** For `$screen-sm-min` and up. $container-sm: $container-tablet !default // Medium screen / desktop $container-desktop: (940px + $grid-gutter-width) !default //** For `$screen-md-min` and up. $container-md: $container-desktop !default // Large screen / wide desktop $container-large-desktop: (1140px + $grid-gutter-width) !default //** For `$screen-lg-min` and up. $container-lg: $container-large-desktop !default ///////////////// // font //////////////// $fw: 400 !default $basic-sans-serif: "Lucida Grande", "Lucida Sans Unicode", Roboto, "Droid Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default $basic-legacy-ie-sans-serif: "MS Pゴシック", "Lucida Sans Unicode", sans-serif !default $basic-bold-sans-serif: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "メイリオ", Meiryo, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default $basic-serif: "Times New Roman", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "游明朝", YuMincho,'MS P明朝','MS PMincho', serif !default $basic-mono: Osaka-mono, "MS Gothic", monospace !default $basic-maru: "Varela Round", "Lucida Grande", "Lucida Sans Unicode", Roboto, "Droid Sans", "HG丸ゴシックM-PRO", "Hiragino Maru Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default $basic-fonts: $basic-sans-serif !default $basic-legacy-ie-fonts: $basic-legacy-ie-sans-serif !default ///////////////// // UI colors //////////////// $default: #ffffff !default $primary: #337AB7 !default $success: #5CB85C !default $info: #5BC0DE !default $warning: #F0AD4E !default $danger: #D9534F !default $text-color: #333333 !default $default-text-reversal: #ffffff !default ///////////////// // SNS colors //////////////// $twitter: #55acee $facebook: #3b5998 $hatena: #008FDE $pocket: #f23c53 $default-text: black !default $reversal-text: white !default // luma contrast color $luma-contrast-bright-color: $default-text !global $luma-contrast-dark-color: $reversal-text !global