「Typora」の版間の差分
Notion-MW |
Notion-MW |
||
(同じ利用者による、間の2版が非表示) | |||
98行目: | 98行目: | ||
== テーマ == | == テーマ == | ||
[https://support.typora.io/Add-Custom-CSS/ Add Custom CSS - Typora Support]にある通り、ユーザー独自のCSSを追加できる。「テーマフォルダを開く」とやるとフォルダが表示されるので、そこにCSSファイルを作る。<code>base.user.css</code>は全テーマ、<code>{current-theme}.user.css</code>(例えば<code>github.user.css</code>)は特定のテーマに対してカスタムCSSを適用する。 | |||
==== 行間 ==== | ==== 行間 ==== | ||
109行目: | 109行目: | ||
font-family: "TRIVFONT", "NazoMin", "NazoMin+", "Open Sans","Clear Sans", "Helvetica Neue", Helvetica, Arial, 'Segoe UI Emoji', sans-serif; | font-family: "TRIVFONT", "NazoMin", "NazoMin+", "Open Sans","Clear Sans", "Helvetica Neue", Helvetica, Arial, 'Segoe UI Emoji', sans-serif; | ||
color: rgb(51, 51, 51); | color: rgb(51, 51, 51); | ||
line-height: | line-height: 1.3; | ||
}</syntaxhighlight> | }</syntaxhighlight> | ||
ここで変える。(もともとは1.6) | ここで変える。(もともとは1.6) | ||
140行目: | 140行目: | ||
となっているので、それぞれ | となっているので、それぞれ | ||
<syntaxhighlight lang="css">p | <syntaxhighlight lang="css">p{ | ||
margin: 0.4em 0; | margin: 0.4em 0; | ||
} | } | ||
blockquote, | blockquote, | ||
ul, | ul, | ||
157行目: | 157行目: | ||
h6 { | h6 { | ||
position: relative; | position: relative; | ||
margin-top: | margin-top: 0.6rem; | ||
margin-bottom: | margin-bottom: 0.6rem; | ||
font-weight: bold; | font-weight: bold; | ||
line-height: 1.4; | line-height: 1.4; |