Last active
January 27, 2019 22:48
-
-
Save usimune/73c1ec5333a4e17a1877c11fff7c2e17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*THOR目次デザインカスタマイズは自己責任でお願いします*/ | |
.content a {font-size: 100%;/*項目の文字サイズ*/ | |
} | |
.content .outline { | |
width: 100%;/*外枠の幅*/ | |
border-top: solid 10px #f4bb3f;/*外枠の線*/ | |
background: #fdf8ec;/*背景色その1*/ | |
border-radius: 3px ; | |
box-shadow: 0 3px 4px | |
rgba(0, 0, 0, 0.1);/*外枠の影*/ | |
} | |
.content .outline__number { | |
background: #fdf8ec;/*項目数字の背景色*/ | |
color:#f4bb3f;/*項目数字の文字色*/ | |
font-weight: bold;/*項目数字の文字の太さ*/ | |
font-size: 100%;/*項目数字の文字サイズ*/ | |
} | |
.content .outline__switch::before{ | |
border-radius:5px ; | |
color:#7c4006;/*閉じる文字色*/ | |
border-color:#f4bb3f;/*閉じる枠*/ | |
} | |
.content .outline__link { | |
color:#7c4006;/*項目の文字色*/ | |
} | |
.content | |
.outline__switch + .outline__list{ | |
background:#fdf8ec;/*背景色その2*/ | |
} | |
.content .outline__item { | |
background: #fdf8ec;/*h2の背景色*/ | |
} | |
.content .outline__list { | |
background: #fdf8ec;/*h3の背景色*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment