Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Last active December 19, 2015 22:19
Show Gist options
  • Save RyoSugimoto/6026696 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/6026696 to your computer and use it in GitHub Desktop.
Sassの設定用ファイルの記述例。
// ==========
// Config
// ==========
// Browser support
$support-ie6: false;
$support-ie7: false;
$support-ie8: true;
$support-ie9: true;
$support-ie10: true;
$support-ie11: true;
$support-mozilla: true;
$support-chrome: true;
$support-safari: true;
$support-opera: true;
$support-android: true;
// ==========
// Vendor prefix
$vp-webkit: true;
$vp-moz: true;
$vp-ms: true;
$vp-o: true;
// ==========
// IE filters, expressions, CSS3PIE
$use-ie-filter: false;
$use-ie-expression: false;
$use-css3pie: true;
$use-css3pie-gradient: false;
// ==========
// Paths and files
$path-images: "../img";
$path-font: "../fonts";
$file-sprite: $path-images + "/sprites/sprites.png";
$file-css3pie: "../js/PIE.htc";
// ==========
// Font families
$serif: "Times New Roman", Times, serif;
$serif-b: Georgia, "Times New Roman", Times, serif;
$sans-serif: Arial, Helvetica, sans-serif;
$sans-serif-b: Verdana, Geneva, sans-serif;
$sans-serif-c: Tahoma, Geneva, sans-serif;
$sans-serif-d: "Arial Black", Gadget, sans-serif;
$cursive: "Comic Sans MS", cursive;
$monospace: "Courier New", Courier, monospace;
$monospace-b: "Lucida Console", Monaco, monospace;
$monospase-c: "MS ゴシック", "MS Gothic", "Osaka-等幅", Osaka-mono, monospace;
$mincho: "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$gothic: "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
$maru-gothic: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic";
// ==========
// Colors variations
$color-blue: #00A0EC;
$color-green: #8CC14C;
$color-orange: #F2852B;
$color-purple: #AC70CD;
$color-red: #E55522;
$color-water: #49C8D6;
$color-yellow: #FBB935;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment