Created
March 14, 2014 22:52
-
-
Save luishdez/9558690 to your computer and use it in GitHub Desktop.
Atom tests
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
/* | |
* 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 | |
*/ | |
a, a:hover { | |
cursor: pointer; | |
color: #8C769E; | |
} | |
.tree-view { | |
background-color: #f0f0f0; | |
} | |
.line-numbers { | |
color: #cbcaca; | |
} | |
.editor .line-number.cursor-line { | |
background-color: #E6DFF0; | |
} | |
.editor .gutter .line-number { | |
padding-left: .8em; | |
} | |
.tool-panel.panel-bottom { | |
border-top: 1px solid #ECECEC; | |
} | |
.tool-panel { | |
font-weight: normal; | |
font-size: 11px; | |
color: #979797; | |
} | |
.editor-colors { | |
color: #636363; | |
font-weight: 400; | |
} | |
.editor { | |
line-height: 1.45; | |
background: #f7f7f5; | |
.wrap-guide { | |
background-color: #E7E7E7; | |
} | |
.gutter { | |
background: #f3f3f3; | |
margin-right: 4px; | |
color: #EBEBEB; | |
} | |
} | |
.editor .invisible-character, .editor .indent-guide { | |
color: rgba(185, 154, 154, 0.08); | |
} | |
.comment { | |
color: #ccc; | |
font-weight: 300; | |
} | |
.markdown-preview { | |
background-color: #f9f9f9; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment