Last active
July 14, 2017 02:52
-
-
Save a-chen/77190c58d96267570c0c067d2271fd35 to your computer and use it in GitHub Desktop.
Dark gray centered Stylish theme
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
/** Dark Gray Centered Theme **/ | |
/*** Main ***/ | |
/* Uncomment to hide main scrollbar | |
body::-webkit-scrollbar { | |
display: none; | |
} | |
*/ | |
.page { | |
background: #363636 !important; | |
margin:0 !important; | |
padding:30px 5% 100px; | |
width:100%; | |
max-width:100%; | |
color: #FCFCFC; | |
border: none; | |
} | |
#pageContainer { | |
margin-top:0 !important | |
} | |
#backgroundImage{ | |
color: #4D4D4D; | |
background-color: #4D4D4D; | |
} | |
/* border of each child... */ | |
DIV.children { | |
border-color: #4F4F4F !important; | |
} | |
.bullet { | |
background-color: #2B2B2B; | |
} | |
/* Help Dialogue animation*/ | |
.ui-widget-header { | |
background: none; | |
background-color: #262626 !important; | |
color: #D6D6D6 !important; | |
} | |
#keyboardShortcutHelper { | |
padding-right: 0px; | |
height:70%; | |
width: 225px; | |
overflow-y: scroll; | |
left: auto; | |
right: 10px; | |
opacity:1; | |
transition:opacity 0.5s linear; | |
border:none; | |
background: none; | |
} | |
/* Hides scrollbars */ | |
#keyboardShortcutHelper::-webkit-scrollbar { | |
display: none; | |
} | |
#keyboardShortcutHelper td{ | |
border-bottom: none; | |
} | |
#keyboardShortcutHelper.closed { | |
height: auto; | |
overflow-y: auto; | |
} | |
#keyboardShortcutHelper:hover { | |
opacity:1; | |
transition-delay:0s; | |
} | |
table { | |
color: #D6D6D6 !important; | |
background: #363636 !important; | |
} | |
td.commandName{ | |
color: #D6D6D6 !important; | |
background: #262626 !important; | |
} | |
/* Moving bullets around */ | |
#move { | |
color: #ffffff !important; | |
} | |
.moving>.highlight, .highlighted>.highlight { | |
background: #0F0F0F !important; | |
} | |
/* Notes (Shift+Enter) */ | |
.notes > .content { | |
color: #A8A8A8 !important; | |
} | |
/* Hyperlinks */ | |
a.contentLink { | |
color: #AAAAAA !important; | |
} | |
/* Matched searches */ | |
.content .contentMatch { | |
color: black; | |
background: #FFE066; | |
border-width: 1px; | |
border-color: #A35F5F; | |
border-style:solid; | |
} | |
/* remove all borders and footers */ | |
div.top.edge, div.bottom.edge, div.left.edge, div.right.edge, div.top.right.corner, div.top.left.corner, div.bottom.right.corner, div.bottom.left.corner, div.footer, div#bottomLinks | |
{ | |
display: none; | |
} | |
/******** TAGS *********/ | |
/*hide the tags when editing */ | |
.content.editing .contentTag { | |
visibility: hidden; | |
} | |
/* remove the underline from tags */ | |
.content .contentTagText { | |
text-decoration: none !important; | |
} | |
/* tag css */ | |
.contentTag { | |
font-weight: bold !important; | |
padding: 2px 3px 2px !important; | |
color: #39C447 !important; /* grey by default(#888888)*/ | |
font-size: 14px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment