Skip to content

Instantly share code, notes, and snippets.

@davidcralph
Last active December 31, 2018 22:12
Show Gist options
  • Save davidcralph/5b8222cccfec8925060a4c8843b54c49 to your computer and use it in GitHub Desktop.
Save davidcralph/5b8222cccfec8925060a4c8843b54c49 to your computer and use it in GitHub Desktop.
DBL Fixed CSS
/* Created by ohlookitsderpy, credit if used! */
/* FIXES */
.footer-links {
cursor: pointer !important; /* fix dark theme slider */
}
/* fixing weird text colour */
.botname,
h4,
h1 {
color: white !important;
}
/* IMPROVEMENTS */
.topnumber,
.tooltip {
display: none; /* remove the weird tooltips and numbers. best idea for numbers would be to use text and not images */
}
#totalContent,
.nametag h1,
.bio h2,
.container__header,
.error-banner-bottom,
.content,
code,
pre {
background-color: #2a2d32 !important; /* make various pages have a bit more dark theme, mostly noticeable on add/edit bot and user pages */
color: white; /* correct colour on dark theme areas */
}
/* Add the really nice looking scrollbar on all pages, not just on API */
html::-webkit-scrollbar {
background: #2A2D32;
width: 12px;
}
html::-webkit-scrollbar-thumb {
background: #7289DA;
}
/* OPTIONAL */
/* make selection look a bit nicer, optional */
::selection {
color: #334dad;
}
/* prevent dragging of images, optional */
img {
-webkit-user-drag: none;
}
/* remove the weird zendesk thing, optional */
#Embed {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment