-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6fe6e8
commit 3dc7f22
Showing
8 changed files
with
150 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
@charset "UTF-8"; | ||
@import 'common/_fonts.scss'; | ||
|
||
// 基本フォントサイズ | ||
$base-font-size: 10pt; | ||
// 基本行送り | ||
$base-line-height: 16pt; | ||
// 基本フォントファミリー | ||
//$base-font-family: "EB Garamond", "Yakumono", "Nanum Myeongjo", "Noto Serif CJK jp", serif; | ||
$base-font-family: "EB Garamond", "Yakumono", "Noto Serif CJK jp", serif; | ||
|
||
// 行数 | ||
$lines: 28; | ||
// 1行あたり文字数 | ||
$characters-per-line: 70; | ||
// 天 | ||
$ten: 17mm; | ||
// 地 | ||
$chi: 15mm; | ||
// 小口 | ||
$koguchi: 12mm; | ||
// ノド | ||
$nodo: 18mm; | ||
|
||
//紙の横幅 | ||
$paper-width: 210mm; | ||
//紙の縦幅 | ||
$paper-height: 297mm; | ||
//トンボ | ||
$marks: none; | ||
|
||
//コンテンツの横幅 | ||
//$content-width: $base-line-height * $lines; | ||
$content-width: $paper-width - $koguchi - $nodo; | ||
//コンテンツの縦幅 | ||
//$content-height: $base-font-size * $characters-per-line; | ||
$content-height: $paper-height - $ten - $chi; | ||
|
||
/* 印刷用のみ段組にする */ | ||
@media print { | ||
html { | ||
column-count: 1; | ||
column-gap: 2em; | ||
} | ||
} | ||
|
||
// ページのスタイル定義 | ||
@import 'common/format'; | ||
// タイポグラフィのスタイル定義 | ||
@import 'common/typography'; | ||
// コンテンツのスタイル定義 | ||
@import 'common/contents'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
@charset "UTF-8"; | ||
@import 'common/_fonts.scss'; | ||
|
||
// 基本フォントサイズ | ||
$base-font-size: 8pt; | ||
// 基本行送り | ||
$base-line-height: 16pt; | ||
// 基本フォントファミリー | ||
//$base-font-family: "EB Garamond", "Yakumono", "Nanum Myeongjo", "Noto Serif CJK jp", serif; | ||
$base-font-family: "EB Garamond", "Yakumono", "Noto Serif CJK jp", serif; | ||
|
||
// 行数 | ||
$lines: 15; | ||
// 1行あたり文字数 | ||
$characters-per-line: 40; | ||
// 天 | ||
$ten: 17mm; | ||
// 地 | ||
$chi: 15mm; | ||
// 小口 | ||
$koguchi: 12mm; | ||
// ノド | ||
$nodo: 18mm; | ||
|
||
//紙の横幅 | ||
$paper-width: 105mm; | ||
//紙の縦幅 | ||
$paper-height: 148mm; | ||
//トンボ | ||
$marks: crop; | ||
|
||
//コンテンツの横幅 | ||
$content-width: $base-line-height * $lines; | ||
//コンテンツの縦幅 | ||
$content-height: $base-font-size * $characters-per-line; | ||
|
||
// ページのスタイル定義 | ||
@import 'common/format'; | ||
// タイポグラフィのスタイル定義 | ||
@import 'common/typography'; | ||
// コンテンツのスタイル定義 | ||
@import 'common/contents'; |