Settings
https://gyazo.com/47c825de7d9d2c67173757e3a5f3c008
このプロジェクトの設定ページです。
nomadoor.iconがかなりいじってしまっていますが、こんなデザイン嫌だ!自分のデザインがいい!というこだわり派な方。大丈夫です。
自分のべージにcssを書くと、自分だけに適用されるのでぜひやってみてください。
フォント変更
code:style.css
font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS Pゴシック", "MS PGothic", "sans-serif";}
ホーム画面
ピンされたページを独立した段に表示
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
サムネの画像小さく、真ん中に あと文字パディングとサイズ変更
code:style.css
/* サムネ画像をフィットさせる */
/* サムネ画像をフィットさせる */
.grid li.page-list-item a .icon {
position: relative;
}
.grid li.page-list-item a .icon{
padding: 0;
margin: auto;
}
.grid li.page-list-item a .icon img {
display: table-cell;
width: auto;
max-height: 90px;
max-width: 90%;
vertical-align: middle;
border-radius: 5px;
}
.grid li.page-list-item a .header{
padding; 8px 10px;
}
.grid li.page-list-item a .title{
font-size: 13px;
}
四角の下に謎の隙間があったので消す
code:style.css
.grid li.page-list-item a .content{
height: 100%;
}
flexカラム逆に あとページの色
code:style.css
.grid li.page-list-item a .content{
flex-direction: column-reverse;
}
.grid li.page-list-item a{
background-color: transparent;
}
/* タイトルの背景色 */
.grid li.page-list-item a .header{
border-top: 0px;
}
/* 文字色 */
.grid li.page-list-item a .description{
color : rgb(34 39 43);
}
背景色 & 角丸にしてシャドウ
code:style.css
body{
}
.grid li.page-list-item a .content{
border-radius: 5px;
}
.page-list .grid li{
box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
背景色変えたのでピンのはみ出した部分の色変更
code:style.css
.grid li.page-list-item a .pin{
}
マウスホバーで影消し
code:style.css
.page-list .grid li:hover{
box-shadow: none;
transition: all 0.3s ease 0s;
}
影
code:style.css
/* 影が飛び出るのでレイヤ―指定して被せる */
.grid li.page-list-item a .header{
z-index: 2;
}
.grid li.page-list-item a .icon img{
}
ノート
ドットを削除
code:style.css
/* 行頭のドットを薄く */
.line .indent-mark .dot {
top: 11px;
width: 6px;
height: 3px;
}
関連リンクを左側に表示する
code:style.css
@media (min-width: 1050px) {
.row-flex .col-page {
max-width: 960px;
}
.col-page .page-wrapper {
display: flex;
flex-direction: row-reverse;
justify-content: center;
}
.page-wrapper .page {
width: 700px;
}
.related-page-sort-menu{
justify-content: normal;
}
.page-wrapper .related-page-list {
max-width: 500px;
}
.related-page-list .grid .splitter:first-child {
display: none;
}
.related-page-list .splitter {
height: 10px!important;
}
.related-page-list .realtion-label {
/* "realtion-label",これはtypo? */
height: 50px!important;
}
.related-page-list .page-list-item {
height: auto!important;
}
.related-page-list .grid li {
width: 200px!important;
padding: 0 0 0 0!important;
margin: 0 0 10px 0!important;
height : auto;
}
.related-page-list .grid .page-list-item .content .title{
font-size: 14px;
}
.related-page-list .icon {
display: none!important;
}
.page-wrapper .grid li.page-list-item a .description{
display: none;
}
画像を並べる[| [画像URL][画像URL][画像URL]…]
code:style.css
/* マトリクス記法 */
.line:not(.cursor-line) .deco-\| { display: inline-flex }
.line .deco-\| img.image { object-fit: contain; margin: 0 }
/* 太字記法と組み合わせて列数を変える */
.line .level-1 .deco-\| > span { width: calc(100%/1) }
.line .level-2 .deco-\| > span { width: calc(100%/2) }
.line .level-3 .deco-\| > span { width: calc(100%/3) }
.line .level-4 .deco-\| > span { width: calc(100%/4) }
.line .level-5 .deco-\| > span { width: calc(100%/5) }
.line class^="level" .deco-\| img.image { object-fit: cover; width: 100%; height: 100% } /* 並べた画像の間にスキマが欲しい場合はこの2行を追加・ぴっちり敷き詰めたい場合はこの2行は不要 */
.line .deco-\| > span, .line class^="level" .deco-\| > span { overflow: hidden } .line .deco-\| img.image, .line class^="level" .deco-\| img.image { margin: .2em } ポップアップ
code:style.css
/* ポップアップメニューの修飾ボタンをアイコン化 */
.popup-menu .button-container .button.strong-button > strong,
.popup-menu .button-container .button.italic-button > i,
.popup-menu .button-container .button.strike-button > strike {
display: inline-block; width: 0; text-indent: -9999px }
.popup-menu .button-container .button.link-button::after,
.popup-menu .button-container .button.strong-button::after,
.popup-menu .button-container .button.italic-button::after,
.popup-menu .button-container .button.strike-button::after {
font: normal 100%/normal FontAwesome;
display: inline-block; min-width: 16px; text-align: center }
.popup-menu .button-container .button.strong-button::after { content: '\f032' }
.popup-menu .button-container .button.italic-button::after { content: '\f033' }
.popup-menu .button-container .button.strike-button::after { content: '\f0cc' }
/* ポップアップメニューのボタン周りの線を消す */
.selections .popup-menu .button-container .button:not(:first-of-type) { border: 0 }