From 24c7594d62d8d7fbbcdb64b11ce4adc5d8e6991a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Fri, 10 Jul 2015 11:12:25 -0500 Subject: Adds atom --- atom/styles.less | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 atom/styles.less (limited to 'atom/styles.less') diff --git a/atom/styles.less b/atom/styles.less new file mode 100644 index 0000000..a321469 --- /dev/null +++ b/atom/styles.less @@ -0,0 +1,32 @@ +/* + * Your Stylesheet + * + * This stylesheet is loaded when Atom starts up and is reloaded automatically + * when it is changed and saved. + * + * Add your own CSS or Less to fully customize Atom. + * If you are unfamiliar with Less, you can read more about it here: + * http://lesscss.org + */ + + +/* + * Examples + * (To see them, uncomment and save) + */ + +// style the background color of the tree view +.tree-view { + // background-color: whitesmoke; +} + +// style the background and foreground colors on the atom-text-editor-element itself +atom-text-editor { + // color: white; + // background-color: hsl(180, 24%, 12%); +} + +// To style other content in the text editor's shadow DOM, use the ::shadow expression +atom-text-editor::shadow .cursor { + // border-color: red; +} -- cgit