Last active
August 29, 2015 14:24
-
-
Save puhitaku/6ee5dc7ff1e6d33acb59 to your computer and use it in GitHub Desktop.
getdatajoy.com
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
/*Fonts, Colors*/ | |
.ace_content{ | |
font-family: "Consolas", "Source Han Code JP Medium"; | |
} | |
.jupyter-output{ | |
background-color: #272822 !important; | |
} | |
.jupyter-output .cell .input, .jupyter-output .manual-input .input, .jupyter-output .cell .output, .jupyter-output .manual-input .output, .text-monospace{ | |
font-family: "Consolas", "Source Han Code JP" !important; | |
} | |
.text-monospace{ | |
color: #F8F8F2; | |
} | |
.alert-danger{ | |
color: #AE2D05; | |
} | |
body{ | |
background-color: #444; | |
} | |
aside#file-tree ul.file-tree-list li .entity-name{ | |
color: #DDD; | |
} | |
aside#file-tree ul.file-tree-list li .entity-name:hover{ | |
background-color: #666; | |
} | |
.toolbar.toolbar-header{ | |
box-shadow: 0 0 0; | |
} | |
.toolbar-tall{ | |
background-color: #272822; | |
} | |
.toolbar{ | |
border-bottom: 0px; | |
} | |
.toolbar .btn-full-height{ | |
border-right: 0px; | |
} | |
.toolbar .toolbar-right .btn-full-height{ | |
border-right: 0px; | |
border-left: 0px; | |
} | |
.toolbar.toolbar-alt{ | |
background-color: transparent; | |
} | |
.ui-layout-resizer{ | |
background-color: #272822; | |
border-left: 0px; | |
border-right: 0px; | |
} | |
.ui-layout-resizer .ui-layout-toggler:hover{ | |
background-color: #666; | |
color: #AAA; | |
} | |
.ui-layout-resizer-west{ | |
background-color: #2F3129; | |
} | |
.project-name .name{ | |
color: #DDD; | |
} | |
#intercom-launcher{ | |
visibility: hidden !important; | |
} | |
.toolbar .btn-full-height{ | |
color: #A4A4A4; | |
} | |
a{ | |
color: #A4A4A4; | |
} | |
aside#file-tree ul.file-tree-list li.selected > .entity > .entity-name{ | |
color: #DDD; | |
border-right: 4px solid #DDDDDD; | |
} | |
aside#file-tree ul.file-tree-list li i.fa-folder-open, aside#file-tree ul.file-tree-list li i.fa-folder{ | |
color: #A4A4A4; | |
} | |
.loading-screen h3 { | |
background-image:none !important; | |
} | |
/*Scroll Bars*/ | |
.jupyter-output .jupyter-output-inner::-webkit-scrollbar { | |
width:10px; | |
background: #272822; | |
} | |
.jupyter-output .jupyter-output-inner::-webkit-scrollbar:horizontal { | |
height:10px; | |
} | |
.jupyter-output .jupyter-output-inner::-webkit-scrollbar-button { | |
width:0px; | |
height:0px; | |
background: #666; | |
} | |
.jupyter-output .jupyter-output-inner::-webkit-scrollbar-thumb { | |
background: #999; | |
} | |
.jupyter-output .jupyter-output-inner::-webkit-scrollbar-corner { | |
background: #444; | |
} | |
.ace_scrollbar::-webkit-scrollbar { | |
width:10px; | |
background: #272822; | |
} | |
.ace_scrollbar::-webkit-scrollbar-button { | |
width:0px; | |
height:0px; | |
background: #666; | |
} | |
.ace_scrollbar::-webkit-scrollbar-thumb { | |
background: #999; | |
} | |
.ace_scrollbar::-webkit-scrollbar-corner { | |
background: #ddd; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment