Advertisement
Guest User

just css my pihole up fam

a guest
Feb 4th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. /* By 0XE4 */
  2.  
  3. /* == SCROLL BAR == */
  4. ::-webkit-scrollbar {width: 4px;height: 9px;}
  5. ::-webkit-scrollbar-thumb:hover {background: #383838;}
  6. ::-webkit-scrollbar-thumb {background: #474747;}
  7.  
  8. /* == NAVIGATION SIDEBAR == */
  9.  
  10. /* Main Background & Font Color */
  11. body, .box, .box-header.with-border, .skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .sidebar a, .skin-blue .left-side, .content-wrapper, .right-side, .skin-blue .main-header .logo, .skin-blue .main-header .navbar, .skin-blue .sidebar-menu>li.header, .main-footer, .form-control, .list-group-item {
  12. background-color: #212121;color: #E5E5E5;}
  13.  
  14. .layout-boxed .wrapper {
  15. max-width: 100%;
  16. }
  17.  
  18.  
  19. /* Hover Colors */
  20. .skin-blue .sidebar-menu>li:hover>a, .skin-blue .sidebar-menu>li.active>a {
  21. color: #fff;
  22. background: #2c2c2c;
  23. border-left-color: rgba(60,141,188,0.5);
  24. }
  25.  
  26. /* == STAT BOXES == */
  27. .box-header.with-border {
  28. border: none !important;
  29. }
  30.  
  31.  
  32. /* Text Alignment */
  33. .small-box {padding-left: 3px;}
  34.  
  35. /* Icons on the stat boxes */
  36. .icon {display:none;}
  37.  
  38. /* Box colors */
  39. div#queries-over-time,div#query-types,div#forward-destinations,div#ad-frequency,div#client-frequency,.box-header.with-border{border-radius: 2px;border-left: 3px solid rgba(103, 102, 102, 0.9);}
  40.  
  41. .small-box, .box {
  42. border: none;
  43. box-shadow: 5px 6px 15px 2px rgba(23, 23, 23, 0.45);
  44. }
  45.  
  46. .small-box.bg-aqua,.small-box.bg-green,.small-box.bg-yellow,.small-box.bg-red {
  47. background-color: #232323 !important;
  48. }
  49.  
  50. .small-box.bg-aqua {border-radius: 2px;border-left: 3px solid rgba(0,166,225,0.9);}
  51. .small-box.bg-green {border-radius: 2px;border-left: 3px solid rgba(11,153,84,0.9);}
  52. .small-box.bg-yellow {border-radius: 2px;border-left: 3px solid rgba(236,137,30,0.9);}
  53. .small-box.bg-red {border-radius: 2px;border-left: 3px solid rgba(192,57,43,0.9);}
  54.  
  55. h3#ads_blocked_today {color: #00a6e1 !important;}
  56. h3#dns_queries_today {color: #0b9954 !important}
  57. h3#ads_percentage_today {color: #ec891e !important}
  58. h3#domains_being_blocked {color: #c0392b !important}
  59.  
  60.  
  61. .table-bordered,.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td {
  62. border: none;}
  63.  
  64. .progress-bar.progress-bar-yellow {background-color: #c0392b !important}
  65.  
  66. /* == WHITELIST PAGE == */
  67.  
  68. .page-header {
  69. border-bottom: none;
  70. border-radius: 2px;border-left: 3px solid rgba(103, 102, 102, 0.9);
  71. box-shadow: 5px 6px 15px 2px rgba(23, 23, 23, 0.45);
  72. }
  73.  
  74. h1 {
  75. padding-top: 14px;
  76. padding-bottom: 0px;
  77. padding-left: 20px;
  78. }
  79.  
  80. /* Domain input bar */
  81. input#domain ,.btn-default, .btn-default:hover,.btn-default:active, .btn-default.hover{
  82. background-color: #2C2C2C;
  83. color: #E5E5E5;
  84. }
  85.  
  86. /* == GLOBAL HIDE RANDOM BITS == */
  87. .main-footer,li:nth-child(3),li:nth-child(7),.navbar-custom-menu {
  88. display: none;
  89. }
  90.  
  91. /* == GLOBAL REMOVE RANDOM BORDERS == */
  92. .form-control,.btn-default,.list-group-item,.table-responsive,div#domain-frequency {
  93. border: none !important;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement