From 993191962eead8938dcfb9005e0beccdeb7c2666 Mon Sep 17 00:00:00 2001 From: Rui Date: Wed, 28 Feb 2018 18:55:54 +0900 Subject: [PATCH] =?UTF-8?q?=E9=81=B8=E6=8A=9E=E3=81=97=E3=81=9F=E6=96=87?= =?UTF-8?q?=E5=AD=97=E3=81=AE=E8=83=8C=E6=99=AF=E8=89=B2=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0(2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _sass/_scaffolding.scss | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/_sass/_scaffolding.scss b/_sass/_scaffolding.scss index d8c34d7..de007a7 100644 --- a/_sass/_scaffolding.scss +++ b/_sass/_scaffolding.scss @@ -1,15 +1,19 @@ // 基本設定 body { background: $background; - color: $text-color; + color: $font-color; font-family: $font-family; font-size: $font-size; - letter-spacing: 0.075em; - line-height: 1.4em; + letter-spacing: $letter-spacing; + line-height: $line-height; margin: 0; - // モバイルの場合は文字を大きく @include media-mobile { font-size: $font-size-mobile; } + + ::selection { + background-color: $selection-background; + color: $font-color-selection; + } }