Last active
January 14, 2019 09:10
-
-
Save sreesarma/eb463af9253e741234652c967ad98e1f 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
/* Code for "Postman to Wiki" at https://medium.com/@sreedharc/postman-to-wiki-e7d31c76db57 */ | |
@import url('https://fonts.googleapis.com/css?family=Merriweather|Merriweather+Sans|Muli'); | |
.wiki-content h1 { | |
font-family: "Merriweather"; | |
font-size: 36px; | |
font-weight: regular; | |
color: #3ebb3e; | |
line-height: 1.5; | |
} | |
.wiki-content h2 { | |
font-family: "Merriweather Sans"; | |
font-size: 24px; | |
color: #282828; | |
line-height: 1.5; | |
} | |
.wiki-content h3 { | |
font-family: "Merriweather Sans"; | |
font-size: 20px; | |
font-weight: 300; | |
color: #7e7e7e; | |
line-height: 1.5; | |
} | |
.wiki-content h4 { | |
font-family: "Muli"; | |
font-size: 14px; | |
font-weight: 600; | |
color: #3572b0; | |
line-height: 1.5; | |
} | |
.wiki-content { | |
font-family: "Muli"; | |
line-height: 1.5; | |
font-size: 14px; | |
} | |
code { | |
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; | |
color: #3ebb3e; | |
} | |
.panel { | |
background-color: #f4f4f4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment