Advertisement
Guest User

overthewire-dark

a guest
Feb 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1. /* overthewire */
  2. @-moz-document regexp("^https?://overthewire.org.*") {
  3.     html {
  4.         background: #202020 !important;
  5.     }
  6.     body {
  7.         background: transparent !important;
  8.         color: #fcfcfc !important;
  9.     }
  10.     #content {
  11.         margin: 74px 0px 0px 208px !important;
  12.     }
  13.     #sidemenu {
  14.         background: #101010 !important;
  15.     }
  16.     #shortcuts {
  17.         display: none !important;
  18.     }
  19.     #sshinfo {
  20.         border: 1px solid #6699dd !important;
  21.     }
  22.     #sshinfo sh {
  23.         color: #6699dd !important;
  24.     }
  25.     .highlight {
  26.         background: #101010 !important;
  27.         font-family: Hack, monospace !important;
  28.     }
  29.     h1, h2, h3, h4, h5, h6, .titlelink, .h2link {
  30.         color: #6699dd !important;
  31.     }
  32.     a:link {
  33.         color: #0088ff !important;
  34.     }
  35.     a:visited {
  36.         color: #0077ee !important;
  37.     }
  38.     a:hover {
  39.         color: #00aa00 !important;
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement