日記

個別記事用のスタイルを置いておくよ

記事内の装飾って、リセットCSSでうち消したのを戻していくような作業で、
ほんの少しだけ虚無感を感じなくもない。
ということで置いておきます。
結構フォントの大きいレイアウトなのでその辺は調整してください。
てゆーか全体的に調整して使ってください。

/* 個別記事アイテムのスタイル */
.article-item p{
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}
.article-item img{
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
border:2px solid #ddd;
}
.article-item h1{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #be0008;
}
.article-item h2{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #be0008;
}
.article-item h3{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #be0008;
}
.article-item h4{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #be0008;
}
.article-item h5{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #be0008;
}
.article-item h6{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #be0008;
}
.article-item table{
    background: #fff;
    border: 1px solid #ccc;
    font-weight: 500;
    width: 100%;
    margin-top: 30px;
}
.article-item table th,.article-item table td{
    border: 1px solid #ccc;
    padding: 10px;
}
.article-item table th{
    font-weight: 700;
    background: #ddd;
}
.article-item pre {
    background: #8d8c8c;
    color: #fff;
    padding: 20px;
    margin-top: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.article-item blockquote {
    background: #eee;
    padding: 20px;
    margin-top: 30px;
}
.article-item blockquote p{
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: #6c6c6c;
}
.article-item blockquote:before{
    content:"”";
    display: block;
    color: #6c6c6c;
    font-size: 30px;
}
.article-item blockquote:after{
    content:"”";
    display: block;
    text-align: right;
    color: #6c6c6c;
    font-size: 30px;
}
.article-item dl{
    margin-top: 30px;
    font-size: 18px;
}
.article-item dl dt{
    font-weight: 700;
    margin-bottom: 10px;
}
.article-item dl dd{
    margin-left: 30px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}
.article-item ol,.article-item ul{
    margin-bottom: 30px;
    margin-left: 20px;
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
}
.article-item ol li,.article-item ul li{
    margin-bottom: 15px;
}
.article-item ol{
    list-style-type: decimal;
}
.article-item ul{
    list-style-type:disc;
}
.article-item strong {
    background: #fcff00;
    font-weight: bold;
    padding: 3px 10px;
}
.article-item em {
    font-weight: bold;
    font-size: 120%;
}
こちらの記事もおすすめ!