Last active
December 13, 2015 19:59
-
-
Save hikoma/4966999 to your computer and use it in GitHub Desktop.
Custom CSS for MediaWIki
This file contains 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
@charset "utf-8"; | |
h1, h2, h3, h4, h5, h6 { | |
color: #556; | |
font-weight: normal; | |
line-height: 1.4; | |
margin: 15px 0; | |
border: none; | |
} | |
h1 { | |
font-weight: bold; | |
padding: 5px 0; | |
border-bottom: 5px #0bd solid; | |
} | |
h2 { | |
font-weight: bold; | |
padding: 5px 0 5px 10px; | |
border-left: 10px #0bd solid; | |
} | |
h3 { | |
border-bottom: 2px #999 dotted; | |
} | |
h3, h4 { | |
padding: 2px 0 2px 10px; | |
border-left: 10px #999 solid; | |
} | |
h5 { | |
padding: 2px 0 2px 5px; | |
border-left: 5px #999 solid; | |
} | |
h6 { | |
padding: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment