Last active
June 11, 2019 16:52
-
-
Save langheran/37b3f911563f993e3f71381fb7af9e3b to your computer and use it in GitHub Desktop.
Custom Style CSS for VSCode.
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
@font-face { | |
font-family: MerriweatherNisim monospacified; | |
src: url("MerriweatherNisim_monospacified_for_UbuntuMono.ttf"); | |
} | |
@font-face { | |
font-family: NisimBookAntiqua monospacified; | |
src: url("NisimBookAntiqua_monospacified_for_UbuntuMono.ttf"); | |
} | |
[title="Split Editor Right (Ctrl+|)"] { | |
display: none !important; | |
} | |
.window-appicon, .action-label.icon.close-editor-action, .tab-close, .tabs .toolbar-toggle-more { | |
display: none !important; | |
} | |
.monaco-shell, .monaco-shell .monaco-menu-container .monaco-menu { | |
/*font-family: -apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif;*/ | |
font-family: "Merriweather", "PT Serif", Georgia, "Times New Roman", "STSong", Serif; | |
/*font-family: "Book Antiqua",Palatino,"Palatino Linotype","Palatino LT STD",Georgia,serif;*/ | |
} | |
.monaco-workbench > .part.editor > .content .editor-group-container.empty .editor-group-letterpress { | |
background-image: none !important; | |
} | |
/* canvas.decorationsOverviewRuler{ | |
display: none !important; | |
} */ | |
canvas.decorationsOverviewRuler{ | |
background-color: rgba(128, 128, 128, 0.2) | |
} | |
.invisible.scrollbar.vertical.fade | |
{ | |
opacity: 1 !important; | |
} | |
.monaco-workbench>.part.editor>.content .editor-group-container>.title .tabs-container>.tab | |
{ | |
padding-left: 0px; | |
} | |
.tab .monaco-icon-label-description-container{ | |
width:100%; | |
} | |
.tab .monaco-icon-label-description-container > a.label-name{ | |
width:100%; | |
text-align: center; | |
display: block; | |
} | |
div.view-line | |
{ | |
/* font-size: 1.27em; For Non-Monospace*/ | |
/* font-size: 1.075em; editor.scrollbar.verticalScrollbarSize:52 && Monospace */ | |
font-size: 1.075em; | |
-webkit-font-smoothing: antialiased; | |
-webkit-text-stroke: 0px; | |
font-weight:lighter !important; | |
} | |
/* | |
#workbench\.parts\.editor | |
{ | |
top: 33 ! important; | |
} | |
#workbench\.parts\.titlebar | |
{ | |
height: 33px !important; | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment