Skip to content

Instantly share code, notes, and snippets.

@joews
Created May 7, 2014 11:55
Show Gist options
  • Save joews/478becbee04c7f28ea1e to your computer and use it in GitHub Desktop.
Save joews/478becbee04c7f28ea1e to your computer and use it in GitHub Desktop.
My Atom stylesheet
/*
* 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
*/
// Hide ignored items from the tree view
.tree-view {
.status-ignored {
display: none;
}
}
////////////////////////////////////////////////////////////////////////////////
// Give the text some breathing room
.editor {
padding-top: 0.5em;
}
.scroll-view {
padding-left: 1em;
}
// Give the gutter some top padding to look nice with the editor padding
.gutter {
padding-top: 0.5em;
position: relative;
top: -0.5em;
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// Remove the 8px "dead space" beneath the tab row
.tab-bar:after {
height: 0;
}
.tab-bar {
height: 37px;
.tab.active {
}
}
////////////////////////////////////////////////////////////////////////////////
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment