Advertisement
Guest User

Untitled

a guest
Jul 26th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.55 KB | None | 0 0
  1. :root {
  2.     --main-color: #303f9f;
  3.     /* This is the main color, used for all the links and icons */
  4.     --highlight-color: #666ad1;
  5.     /*This color will be used to emphasise stuff, like underlines */
  6.     --main-color-dark: #001970;
  7.     /* This is a high contrast version of the main color, fo add a visusl difference/ borders */
  8.     --text-color: #444444;
  9.     --alert-color: #d32f2f;
  10.     --fine-color: #388e3c;
  11.     --text-color-negative: #001970;
  12.     /* This is the color of all the texts/ links that appear on elements that have background colors. CHange to white if you use a solid Background */
  13.     --header-color: #f1f1f1;
  14.     /* This is the color for all the headers, change this to the same value of main-color if you want a colorfull UI */
  15.     --header-color-highlight: #dedddd;
  16.     /* This is the darker header color, for activ/ hover states and so on. Change to main color dark value if you want a colorfull UI */
  17.     --logo-hue: 0;
  18.     /* change this to '1' on solid backgrounds */
  19. }
  20. input[type=button],
  21. input[type=reset],
  22. input[type=submit],
  23. button,
  24. a.button {
  25.     border: 1px solid var(--main-color-dark);
  26.     background: var(--main-color-dark);
  27.     border-radius: 2px;
  28.     color: var(--header-color);
  29.     /* Change this if you use a light color as main color */
  30.     box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  31. }
  32. input:hover[type=button],
  33. input:hover[type=reset],
  34. input:hover[type=submit],
  35. button:hover,
  36. a.button:hover {
  37.     border-color: var(--main-color);
  38.     background: var(--main-color);
  39. }
  40. #menu {
  41.     border-radius: 0;
  42.     background: var(--header-color);
  43. }
  44. #nav-block #nav-item.active {
  45.     background: var(--header-color-highlight);
  46.     /* change this if you want more color cues */
  47.     border-bottom: thick solid var(--highlight-color);
  48.     border-right: 1px solid var(--header-color);
  49.     border-radius: 0px;
  50. }
  51. #nav-block #nav-item {
  52.     border-right: 1px solid var(--header-color);
  53. }
  54. #header.image {
  55.     background-image: none;
  56.     background: var(--header-color);
  57. }
  58. #header .block {
  59.     border-radius: 2px;
  60. }
  61. #nav-block #nav-item:hover {
  62.     background: var(--header-color-highlight);
  63.     /*change this if you want more color cues */
  64.     border-bottom: thick solid var(--header-color);
  65.     border-radius: 0;
  66. }
  67. #nav-block #nav-item a:hover {
  68.     color: var(--text-color-negative);
  69. }
  70. #nav-block #nav-item {
  71.     border-right: 1px solid var(--header-color);
  72. }
  73. #nav-block #nav-item a {
  74.     color: var(--text-color-negative);
  75. }
  76. #nav-block #nav-item.active:hover a,
  77. #nav-block #nav-item.active a {
  78.     color: var(--text-color-negative);
  79. }
  80. #header.image {
  81.     border-radius: 0;
  82. }
  83. #header .logo a {
  84.     color: var(--text-color-negative);
  85. }
  86. .logo img {
  87.     filter: grayscale(1) invert(var(--logo-hue));
  88. }
  89. #header .text-left {
  90.     border-right: solid medium var(--highlight-color);
  91. }
  92. #template {
  93.     box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
  94. }
  95. #title,
  96. table.share_status thead tr:first-child td,
  97. table.disk_status thead tr:first-child td,
  98. table.tablesorter thead tr th,
  99. table.tablesorter thead tr .tablesorter-headerAsc,
  100. table.tablesorter thead tr .tablesorter-headerDesc {
  101.     border-radius: 0;
  102.     background: var(--header-color);
  103.     color: var(--text-color-negative);
  104.     border: 1px;
  105. }
  106. .switch-button-label {
  107.     color: var(--text-color-negative) !important;
  108. }
  109. .switch-button-background {
  110.     border-radius: 10px;
  111.     background: rgba(0, 0, 0, 0.38);
  112.     border: 1px solid transparent;
  113. }
  114. .switch-button-button {
  115.     border-radius: 10px;
  116.     background: #F1F1F1;
  117.     border: 1px solid #F1F1F1;
  118. }
  119. #header .block {
  120.     background-color: transparent;
  121.     color: var(--text-color-negative);
  122. }
  123. .blue-text {
  124.     color: var(--text-color-negative);
  125. }
  126. .usage-bar,
  127. .usage-disk {
  128.     background-color: var(--header-color-highlight);
  129.     border-radius: 0;
  130.     box-shadow: none;
  131.     padding: 0;
  132. }
  133. .usage-bar > span,
  134. .usage-disk.sys > span,
  135. .usage-disk.all > span,
  136. .usage-disk > span {
  137.     background-color: var(--highlight-color);
  138.     border-radius: 0;
  139.     box-shadow: none;
  140. }
  141. .stopped {
  142.     color: var(--alert-color);
  143. }
  144. .started {
  145.     color: var(--fine-color);
  146. }
  147. .update {
  148.     color: var(--highlight-color);
  149. }
  150. .back_to_top {
  151.     color: var(--main-color);
  152. }
  153. select {
  154.     border-radius: 0;
  155.     box-shadow: none;
  156.     background: transparent;
  157.     color: var(--text-color-negative);
  158. }
  159. #smart-parity img,
  160. #smart-disk1 img,
  161. #smart-disk2 img,
  162. #smart-disk3 img,
  163. #smart-disk4 img,
  164. #smart-disk5 img,
  165. #smart-disk6 img,
  166. #smart-disk7 img,
  167. #smart-disk8 img,
  168. #smart-disk9 img,
  169. #smart-disk10 img,
  170. #smart-cache img,
  171. #smart-sda img,
  172. #smart-sdb img,
  173. #smart-sdc img,
  174. #smart-sdd img,
  175. #smart-sde img,
  176. #smart-sdf img,
  177. #smart-sdg img,
  178. #smart-sdh img,
  179. #smart-sdi img,
  180. #smart-sdj img,
  181. #smart-sdk img,
  182. #smart-sdl img,
  183. #smart-sdm img,
  184. #smart-sdn img,
  185. #smart-sdo img,
  186. #smart-sdp img,
  187. #smart-sdq img,
  188. #smart-sdr img,
  189. #smart-sds img,
  190. #smart-sdt img,
  191. #smart-sdu img,
  192. #smart-sdv img,
  193. #smart-sdw img,
  194. #smart-sdx img,
  195. #smart-sdy img,
  196. #smart-sdz img,
  197. #title span img {
  198.     filter: saturate(0);
  199. }
  200. .status a {
  201.     color: var(--text-color-negative);
  202. }
  203. div.user-list {
  204.     border-radius: 2px;
  205.     border: none;
  206.     background: var(--header-color);
  207.     box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
  208. }
  209. div.user-list a {
  210.     color: var(--text-color-negative);
  211. }
  212. div.user-list img {
  213.     filter: contrast(0%) brightness(10);
  214. }
  215. div.tab [type=radio]:checked + label {
  216.     color: var(--text-color-negative);
  217.     border-radius: 0;
  218.     border: none;
  219.     background: var(--header-color-highlight);
  220. }
  221. div.tab [type=radio] + label {
  222.     color: var(--text-color-negative);
  223.     border-radius: 0;
  224.     border: none;
  225.     background: var(--header-color);
  226.     opacity: 1;
  227. }
  228. div.tab [type=radio] + label:hover {
  229.     background: var(--header-color-highlight);
  230.     color: var(--text-color-negative);
  231. }
  232. table {
  233.     margin-top: -22px;
  234. }
  235. table.share_status.fixed {
  236.     border: 1px solid var(--header-color);
  237. }
  238. table.tablesorter.shift {
  239.     margin-top: -23px;
  240. }
  241. .tablesorter .fa {
  242.     color: var(--text-color-negative);
  243. }
  244. .switch-button-background.checked {
  245.     background: var(--main-color-dark) !important;
  246. }
  247. .switch-button-background.checked {
  248.     border: 1px solid var(--main-color-dark);
  249. }
  250. .searchSubmit {
  251.     border-radius: 0;
  252.     background: var(--main-color-dark) !important;
  253. }
  254. .searchSubmit a {
  255.     box-shadow: none;
  256. }
  257. #searchFilter input {
  258.     background: transparent;
  259.     color: var(--text-color-negative);
  260.     box-shadow: none;
  261.     border: none;
  262. }
  263. #searchFilter input::placeholder {
  264.     color: var(--text-color-negative);
  265.     opacity: 1;
  266. }
  267. #searchFilter button {
  268.     background: var(--highlight-color) !important;
  269.     border-bottom: 1px solid var(--highlight-color);
  270.     box-shadow: none;
  271. }
  272. #searchFilter button:hover {
  273.     background: var(--main-color-dark) !important;
  274. }
  275. .ca_template_icon {
  276.     border-radius: 0;
  277.     background: var(--header-color-highlight);
  278.     color: var(--text-color-negative);
  279. }
  280. .ca_template {
  281.     border-radius: 0;
  282. }
  283. .ca_applicationName,
  284. .ca_repository,
  285. .ca_author,
  286. .ca_wide_info .fa,
  287. .unpinned {
  288.     color: var(--text-color-negative);
  289. }
  290. .ca_tooltip img {
  291.     filter: grayscale(1);
  292. }
  293. .ca_category {
  294.     color: var(--main-color);
  295. }
  296. center b {
  297.     color: var(--main-color) !important;
  298. }
  299. table.share_status.dash,
  300. table.share_status.dash.line tbody td {
  301.     border: none;
  302. }
  303. table.disk_status select {
  304.     color: var(--text-color);
  305. }
  306. .docker_readmore .fa,
  307. .readmore-js-toggle .fa {
  308.     color: var(--main-color);
  309. }
  310. dd select {
  311.     color: var(--text-color) !important;
  312. }
  313. i.fa.iconstatus.fa-play.started {
  314.     color: var(--fine-color) !important;
  315. }
  316. i.fa.iconstatus.fa-square.stopped {
  317.     color: var(--alert-color) !Important;
  318. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement