Skip to content

Instantly share code, notes, and snippets.

@slifin
Created March 7, 2019 13:34
Show Gist options
  • Select an option

  • Save slifin/a3ce0997d6e9be8786e3c74e5d0db851 to your computer and use it in GitHub Desktop.

Select an option

Save slifin/a3ce0997d6e9be8786e3c74e5d0db851 to your computer and use it in GitHub Desktop.
atom stylesheet for soda
/*
* 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%);
}
// style UI elements inside atom-text-editor
atom-text-editor .cursor {
// border-color: red;
}
.settings-view .config-menu {
background-color: #282828;
}
atom-pane-container atom-pane .item-views .pane-item {
background-color: #282828;
}
.status-bar {
background-color: #222;
}
.tab-bar .tab.active {
box-shadow:none;
line-height: 33px !important;
height: 35px;
}
.tab-bar .tab {
box-shadow: none;
top: 0;
height: 35px;
line-height: 35px !important;
}
.tab-bar {
padding: 0;
}
.tab-bar .tab:before {
height: 35px;
}
.tab-bar .close-icon {
line-height: 35px !important;
}
.tab-bar .tab.active .close-icon {
line-height: 35px;
}
.tab-bar .tab.active, .tab-bar .tab.active:before {
height: 35px;
}
.tab-bar {
height: 40px;
}
@slifin
Copy link
Copy Markdown
Author

slifin commented Mar 7, 2019

screenshot 2019-03-07 at 13 34 33

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment