Settings
font
code:style.css
.line {
font-family: 'JetBrains Mono', 'Noto Sans JP', sans-serif;
}
.title, .line-title {
font-family: 'JetBrains Mono', 'Noto Sans JP', sans-serif;
font-weight: 700;
}
過去に使ったもの
強調にカラーマーカーをつける
code:style.css
.line strong {
background: linear-gradient(180deg,rgba(255,255,255,0) 50%, #f3fd7f 50%); }
背景模様
code:style.css
body {
background-image: radial-gradient(circle at 70% 30%, rgba(212, 235, 242, 0.8), rgba(188, 200, 242, 0.8));
}
過去に使ったもの
ヘッダ
code:style.css
}
}
navbarのアイコン
code:style.css
.navbar-brand::before {
content: '';
width: 30px;
height: 30px;
background-size: cover;
border-radius: 15px;
}
.brand-icon {
display: none;
}