とりあえず もくじ

 

[toc]
[toc]

もしもし

かめよ

かめさんよ

せかいのうちで

おまえほど

ルルルルルルル~ルルルルル

どーして

おまえは

ルルルルルr

とりあえず、「Easy Table of Contents」のカスタマイズコードを乗せておきますね。

CSS

#ez-toc-container {
    margin: 0 0 2em 0;
    padding: 0;
    border: solid 2px;
    border-top: none;
    border-radius: 3px;
    background: #f9f9f9;
    border-color: #5a5a5a!important;
    box-shadow: none;
}
.entry-content .ez-toc-title-container {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 42px;
    font-weight: 500;
    background: #5a5a5a;
    text-align: center;
}
p.ez-toc-title {
    color: white;
}
.entry-content .ez-toc-title-container:before{
    display: none;
}
#ez-toc-container ul {
    list-style-type: decimal;
}
#ez-toc-container .ez-toc-list {
    margin: 0;
    padding: 1em 6% 1em 12%;
    counter-reset: num;
    position: relative;
}
#ez-toc-container .ez-toc-list li {
    position: relative;
}
#ez-toc-container .ez-toc-list > li:before {
    counter-increment: num;
    position: absolute;
    display: inline-block;
    left: -36px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    content: counter(num)"";
    background-color: #5a5a5a;
    font-family: 'Quicksand',sans-serif;
    color: #fff;
}
#ez-toc-container ul {
    list-style-type: none;
}
#ez-toc-container ul li ul {
    list-style-type: decimal;
}
.ez-toc-list li a {
    display: inline-block;
    line-height: 2;
    width: 100%;
    padding: 0;
    vertical-align: top;
}
.ez-toc-list a:hover {
    text-decoration: none;
    opacity: .5;
}
.ez-toc-list:after {
    content: url(★画像★);
    position: absolute;
    bottom: 0px;
    right: 10px;
    opacity: 0.6;
}
@media only screen and (max-width: 480px){
#ez-toc-container .ez-toc-list {
    padding: 1em 6% 1em 18%;
}}