pulsar/dot-atom/styles.less

25 lines
619 B
Plaintext
Raw Normal View History

/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* Uncomment the examples below to test or add your own CSS or Less.
*/
// style the background color of the tree view
2013-01-31 03:30:18 +04:00
.tree-view {
// background-color: whitesmoke;
2013-01-31 03:30:18 +04:00
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
2013-02-01 23:13:22 +04:00
}
2014-01-31 04:57:27 +04:00
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
2014-01-31 04:57:27 +04:00
}