// ブレークポイント @mixin media-desktop { @media {{ site.media-desktop }} { @content; } } @mixin media-mobile { @media {{ site.media-mobile }} { @content; } } // 共通 $border-default: 1px solid #ccc; // 基本設定 $background: url({{ site.github.url }}/images/background.png); $font-color: #333; $font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", "meiryo", "arial", "sans-serif"; $font-size: 18px; $font-size-mobile: 14px; $letter-spacing: 0.005em; $line-height: 1.5; $selection-background: #659b4b; $selection-font-color: #fff; // コンテナ $container-box-shadow: 0 0 10px 0 #ddd; $container-columns: 80% 20%; $container-padding-top-mobile: 1em; $container-max-width: 1280px; // ヘッダ $header-background: #f2f2f2; $header-height: 3em; $header-link-color: #694; $header-mobile-box-shadow: 0 0 5px 2px rgba(0,0,0,0.3); $header-img-vertical-adjustment: -.4em; // 本文 (右メニュー含む) $article-background: #fff; $article-padding: 0 1em 1em 1em; $article-padding-mobile: 0 0.5em 1em 0.5em; $article-link-color: #588f3d; $article-link-color-visited: #456336; // 本文 - 見出し $article-h2-border-bottom: 1px solid #ddd; $article-h2-font-size: 1.5em; $article-h3-border-bottom: 1px dotted #ddd; $article-h3-font-size: 1.25em; $article-h4-border-bottom: 1px dashed #ddd; $article-h4-font-size: 1em; $article-h5-border-bottom: none; $article-h5-font-size: 1em; $article-h6-border-bottom: none; $article-h6-font-size: 1em; // 本文 - ソースコード $article-code-background: #fcfcfc; $article-code-border: 1px solid #ccc; $article-code-border-radius: 10px; $article-code-color: #333; $article-code-font-family: Menlo, Monaco, Consolas, "Courier New", monospace; $article-pre-code-padding: 9.5px; // 本文 - 目次 $toc-background: #fcfcfc; $toc-border: 1px solid #ccc; $toc-border-radius: 10px; // フッタ $footer-background: #333; $footer-text-color: #fff; // Modなどのスクリーンショット $screenshot-max-height: 250px; $screenshot-max-width: 500px; // ----- インポート ----- // @import "normalize"; @import "scaffolding"; @import "container"; @import "header"; @import "article"; @import "footer"; @import "toc"; @import "screenshot";