1
2/* No bullet */
3#dw__toc * ul {
4    list-style-type: none;
5}
6
7/* No minus on the header */
8#dw__toc > h3 > strong {
9    display: none;
10}
11
12/*Toc*/
13#dw__toc h3 {
14    margin-left: 20px; /* as h2 */
15    margin-bottom: 3px;
16}
17
18/* No margin left on small screen */
19@media (min-width: 0px) and (max-width: 576px) {
20
21    #dw__toc h3 {
22        margin-left: 0px;
23    }
24
25}