Advertisement
Guest User

Untitled

a guest
Jan 13th, 2020
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.12 KB | None | 0 0
  1. :root {
  2.   --base00: #2E3440;
  3.   --base01: #3B4252;
  4.   --base02: #434C5E;
  5.   --base03: #4C566A;
  6.   --base04: #D8DEE9;
  7.   --base05: #E5E9F0;
  8.   --base06: #ECEFF4;
  9.   --base07: #8FBCBB;
  10.   --base08: #88C0D0;
  11.   --base09: #81A1C1;
  12.   --base0A: #5E81AC;
  13.   --base0B: #BF616A;
  14.   --base0C: #D08770;
  15.   --base0D: #EBCB8B;
  16.   --base0E: #A3BE8C;
  17.   --base0F: #B48EAD;
  18.  
  19. }
  20.  
  21. body {
  22.   background-color: var(--base00);
  23. }
  24. .share-status.dashboard {
  25.   border: none;
  26.   -webkit-box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  27.   -moz-box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  28.   box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  29. }
  30.  
  31. .usage-disk {
  32.   background-color: var(--base0a);
  33. }
  34. .usage-disk > span:first-child {
  35.   background-color: var(--base08);
  36. }
  37. span.outer.solid {
  38.   background-color: var(--base00);
  39. }
  40. .red {
  41.   color: var(--base0b);
  42. }
  43. #title {
  44.   margin: 20px 0 30px 0;
  45.   padding: 8px 10px;
  46.   clear: both;
  47.   border-bottom: none;
  48.   background-color: var(--base01);
  49.   letter-spacing: 1.8px;
  50. }
  51.  
  52. /* tables - The css can't be general because some UI elements like the
  53.  "Array Operation" in the "Main" section are made with tables. */
  54.  table {
  55.      background-color: var(--base00);
  56.  }
  57.  
  58. /* Dashboard Tables */
  59. table.share_status.dashboard {
  60.   background-color: var(--base00);
  61.   -webkit-box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  62.   -moz-box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  63.   box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.1);
  64.   border: none;
  65. }
  66. table.share_status.dashboard thead tr:nth-of-type(odd){
  67.     background-color: var(--base01) !important;
  68. }
  69. table.share_status.dashboard thead tr:nth-of-type(even){
  70.     background-color: var(--base01) !important;
  71. }
  72. table.share_status.dashboard tbody tr:nth-child(even) {
  73.     background-color: var(--base00);
  74. }
  75. table.share_status.dashboard tr > td.next {
  76.   border-top: 1px solid var(--base01);
  77. }
  78. /* tbody.share tr:nth-of-type(even) {
  79.   background-color: var(--base03) !important;
  80. } */
  81. .sys_view tr{
  82.     background-color: var(--base00) !important;
  83. }
  84. .cpu_open, .mem_view, .view1, .vpn_view {
  85.     background-color: var(--base00) !important;
  86. }
  87. .docker_view tr {
  88.     background-color: var(--base00) !important;
  89. }
  90. .vm_view tr {
  91.     background-color: var(--base00) !important;
  92. }
  93. /* Main Tables */
  94. td.line {
  95.     border-color: var(--base03) !important;
  96. }
  97. table.disk_status, table.share_status {
  98.     background-color: var(--base00);
  99. }
  100. table.disk_status thead tr:last-child, table.share_status thead tr:last-child {
  101.     border-bottom: none;
  102. }
  103. table.disk_status thead tr td, table.share_status thead tr td{
  104.     background-color: var(--base03) !important;
  105. }
  106. table.disk_status tbody tr:nth-child(even), table.share_status tbody tr:nth-child(even) {
  107.     background-color: var(--base00);
  108. }
  109. table.disk_status tbody tr:nth-child(odd), table.share_status tbody tr:nth-child(odd) {
  110.     background-color: var(--base01);
  111. }
  112. table tbody tr.tr_last {
  113.     border: none;
  114.     background-color: var(--base03) !important;
  115. }
  116. table.array_status {
  117.     background-color: var(--base00);
  118. }
  119. div.user-list {
  120.   border: none;
  121.   border-radius: 0;
  122.   background-color: var(--base01);
  123. }
  124. table.tablesorter thead tr .tablesorter-headerAsc,
  125. table.tablesorter thead tr .tablesorter-headerDesc {
  126.   background-color: var(--base03);
  127. }
  128. table.tablesorter tbody tr:nth-child(even) {
  129.   background-color: var(--base01);
  130. }
  131. table.tablesorter tbody tr:nth-child(odd) {
  132.     background-color: var(--base02);
  133.   }
  134. table.tablesorter thead tr {
  135.   border-bottom: var(--base01) 1px solid;
  136. }
  137. table.tablesorter thead tr th {
  138.   background-color: var(--base03);
  139. }
  140. table.tablesorter.four tbody tr:nth-child(4n-1) {
  141.   background-color: var(--base01);
  142. }
  143. .ca_holder {
  144.   background-color: var(--base01) !important;
  145.   border: none !important;
  146.   border-radius: 0 !important;
  147. }
  148. .disabledIcon {
  149.   color: var(--base07);
  150. }
  151. div.tab [type="radio"]:checked + label {
  152.   border: 1px solid var(--base07);
  153. }
  154. div.tab [type="radio"] + label {
  155.   border-radius: 0;
  156. }
  157. div.tab [type="radio"] + label:hover {
  158.   border: 1px solid var(--base07);
  159. }
  160. div.tab [type="radio"] + label {
  161.   background-color: var(--base01);
  162. }
  163. .dropdown-menu {
  164.   background-color: var(--base04);
  165.   border: 1px solid var(--base04);
  166.   border-radius: 0;
  167.   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  168. }
  169. .dropdown-menu .divider {
  170.   background-color: transparent;
  171.   border-bottom: none;
  172. }
  173. .dropdown-menu li > a:hover,
  174. .dropdown-menu li > a:focus,
  175. .dropdown-submenu:hover > a {
  176.   color: var(--base00);
  177.   text-decoration: none;
  178.   background-color: var(--base06);
  179.   background-image: none;
  180.   background-image: none;
  181.   background-image: none;
  182. }
  183. .dropdown-menu a {
  184.   color: var(--base00);
  185. }
  186. .usage-bar > span {
  187.   display: block;
  188.   height: 100%;
  189.   text-align: right;
  190.   border-radius: 0;
  191.   color: var(--base00);
  192.   background-color: var(--base08);
  193.   box-shadow: none;
  194. }
  195. .usage-bar {
  196.   float: left;
  197.   height: 2rem;
  198.   line-height: 2rem;
  199.   width: 14rem;
  200.   padding: 1px 1px 1px 2px;
  201.   margin: 8px 12px;
  202.   border-radius: 0;
  203.   background-color: var(--base0a);
  204.   box-shadow: none;
  205. }
  206. #nav-block #nav-item.active:after {
  207.   background-color: var(--base08);
  208. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement