Created
October 8, 2015 13:57
-
-
Save jgermade/5003dca243027e7118bb to your computer and use it in GitHub Desktop.
Atom - Custom style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom-text-editor, :host { | |
background-color: #000000; | |
} | |
// style the background color of the tree view | |
.tree-view { | |
// background-color: whitesmoke; | |
font-size: 1.3rem; | |
font-family: monospace; | |
} | |
.list-group li:not(.list-nested-item), .list-tree li:not(.list-nested-item), .list-group li.list-nested-item > .list-item, .list-tree li.list-nested-item > .list-item { | |
line-height: 22px; | |
} | |
.name.icon { | |
&.icon-file-text { | |
color: #ddd; | |
} | |
&.icon-file-directory { | |
font-weight: normal; | |
color: #aaa; | |
&:before { | |
color: #ffdd77; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment