Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save modeverv/eeeaa628ccf82130e4b5b81971b23b4f to your computer and use it in GitHub Desktop.
Save modeverv/eeeaa628ccf82130e4b5b81971b23b4f to your computer and use it in GitHub Desktop.
vscode markdown preview enhanced custom css
/* Please visit the URL below for more information: */
/* https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css */
.markdown-preview.markdown-preview {
// modify your style here
// eg: background-color: blue;
h1 {
border-left: solid 10px lightblue;
border-bottom: solid 2px lightblue;
padding: 5px;
}
h2 {
border-left: solid 5px lightblue;
border-bottom: solid 2px lightblue;
padding: 5px;
}
h3 {
padding: 10px;
}
h4 {
font-size: 1em;
padding: 10px;
}
p {
padding: 10px;
}
pre {
margin-left: 10px;
}
ol,ul {
padding-left: 2em;
}
table {
padding-left: 10px;
}
blockquote {
margin-left: 10px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment