選択した文字の背景色を追加(2)

gh-pages
Rui 2018-02-28 18:55:54 +09:00 committed by GitHub
parent 832bb89e9c
commit 993191962e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -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;
}
}