Hugo用テーマ TwentyFourteen のカスタマイズ
4683 ワード
Hugo用テーマ TwentyFourteen のカスタマイズ
twentyfourteen/static/css/style.css
を編集する.
コンテンツの幅を広くする。
1040行目付近
/**
* 6.0 Content
* --------------------------------------------
*/
.content-area {
/*
padding-top: 48px;
*/
}
.hentry {
margin: 0 auto 48px;
max-width: 672px;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.page-content {
margin: 0 auto;
/*
コンテンツの幅を広くするため、max-widthを474pxから
noneに変更。
*/
max-width: none;
}
.page-content {
margin-bottom: 48px;
}
記事タイトルのUppercaseを無効にする。
test-transform: uppercase;
をコメントアウトする.
/**
* 6.2 Entry Header
* -----------------------------------------------------
*/
.entry-header {
position: relative;
z-index: 1;
}
.entry-title {
font-size: 33px;
font-weight: 300;
line-height: 1.0909090909;
margin-bottom: 12px;
margin: 0 0 12px 0;
/* text-transform: uppercase; */
}
記事表示位置のpadding-topを狭める
3630行目付近
@media screen and (min-width: 846px) {
.content-area,
.content-sidebar {
padding-top: 20px;
}
適用前
適用後
Author And Source
この問題について(Hugo用テーマ TwentyFourteen のカスタマイズ), 我々は、より多くの情報をここで見つけました https://qiita.com/rkarsnk/items/6c70cfcb9535687b3eca著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .