Skip to content

Instantly share code, notes, and snippets.

@Azoay
Last active August 29, 2015 14:23
Show Gist options
  • Save Azoay/0eb1b1d69ae5dfaab4f7 to your computer and use it in GitHub Desktop.
Save Azoay/0eb1b1d69ae5dfaab4f7 to your computer and use it in GitHub Desktop.
atom minimum styles
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
.tree-view {
font-family: "sans";
}
// style the background and foreground colors on the atom-text-editor-element
// itself
atom-text-editor {
font-family: "sans";
font-size: 14px;
}
// To style other content in the text editor's shadow DOM, use the ::shadow
// expression
atom-text-editor::shadow .cursor {
}
// style markdown preview
.markdown-preview{
font-family: "sans";
color: #4a4a4a;
background-color: #ffffff;
h1, h2, h3, h4, h5, h6{
font-family: "sans";
}
}
// style tab
.tab {
font-family: "sans";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment