Last active
February 9, 2017 13:39
-
-
Save redgluten/6efaa02a9f13e5978bce1144bc7b67be to your computer and use it in GitHub Desktop.
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 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 { | |
// Add ligatures and other cute stuff | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
line-height: 2.5; | |
-webkit-font-feature-settings: "liga" 1; | |
font-feature-settings: "liga" 1; | |
} | |
atom-text-editor:not(.mini) .cursor {/* | |
* 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 { | |
// Add ligatures and other cute stuff | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
line-height: 2.5; | |
} | |
atom-text-editor:not(.mini) .cursor { | |
height: 1.1em !important; | |
margin-top: 0.65em; | |
} | |
height: 1.1em !important; | |
margin-top: 0.65em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment