2014-01-31 04:55:43 +04:00
|
|
|
/*
|
|
|
|
* Your Stylesheet
|
|
|
|
*
|
|
|
|
* This stylesheet is loaded when Atom starts up and is reloaded automatically
|
2015-06-19 17:21:36 +03:00
|
|
|
* when it is changed and saved.
|
2014-02-25 04:14:05 +04:00
|
|
|
*
|
2015-06-19 17:21:36 +03:00
|
|
|
* Add your own CSS or Less to fully customize Atom.
|
2015-06-19 15:37:57 +03:00
|
|
|
* If you are unfamiliar with Less, you can read more about it here:
|
|
|
|
* http://lesscss.org
|
2014-01-31 04:55:43 +04:00
|
|
|
*/
|
|
|
|
|
2015-06-19 17:21:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Examples
|
|
|
|
* (To see them, uncomment and save)
|
|
|
|
*/
|
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// style the background color of the tree view
|
2013-01-31 03:30:18 +04:00
|
|
|
.tree-view {
|
2015-06-19 09:57:09 +03:00
|
|
|
// background-color: whitesmoke;
|
2013-01-31 03:30:18 +04:00
|
|
|
}
|
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// style the background and foreground colors on the atom-text-editor-element itself
|
2014-10-09 01:11:57 +04:00
|
|
|
atom-text-editor {
|
2015-06-19 09:57:09 +03:00
|
|
|
// color: white;
|
|
|
|
// background-color: hsl(180, 24%, 12%);
|
2013-02-01 23:13:22 +04:00
|
|
|
}
|
2014-01-31 04:57:27 +04:00
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// To style other content in the text editor's shadow DOM, use the ::shadow expression
|
2015-01-13 20:06:54 +03:00
|
|
|
atom-text-editor::shadow .cursor {
|
2015-06-19 09:57:09 +03:00
|
|
|
// border-color: red;
|
2014-01-31 04:57:27 +04:00
|
|
|
}
|