Advertisement
BLOCKLY18

theme

Sep 28th, 2020 (edited)
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. #s42_background {
  2.   background: linear-gradient(160deg, rgba(0,255,209,1) 0%, rgba(0,78,255,1) 100%)
  3. }
  4.  
  5. #s42_taskbar {
  6.   width: 98%;
  7.   margin-left: 1%;
  8.   background: black !important;
  9.   border-top-left-radius: 10px;
  10.   border-top-right-radius: 10px;
  11.   border: 2px solid #fff !important;
  12.   border-bottom: 0px solid #000 !important;
  13.   color: #fff !important;
  14.   box-shadow: none;
  15. }
  16.  
  17. #s42_taskbar > button, .ui_window_docked, #s42_notif {
  18.   background: black !important;
  19.   border-radius: 20px;
  20.   border: 2px solid #fff !important;
  21.   box-shadow: none !important;
  22.   color: #fff !important;
  23. }
  24.  
  25. .ui_window__head > button {
  26.   border-radius: 100px;
  27.   cursor: url(/c/sys/cursors/pointer.cur),pointer !important;
  28.   color: rgb(0,0,0,0);
  29.   box-shadow: none;
  30.   border: none;
  31. }
  32.  
  33. .ui_window__head__close {
  34.   order: -4 !important;
  35.   background-color: #ff5a52 !important;
  36. }
  37.  
  38. .ui_window__head__minimize {
  39.   order: -3 !important;
  40.   background-color: #e6bf29 !important;
  41. }
  42.  
  43. .ui_window__head__maximize, .ui_window__head__maximized {
  44.   order: -2 !important;
  45.   background-color: #53c22b !important;
  46. }
  47.  
  48. .ui_window__head__help {
  49.   order: -1 !important;
  50.   background-color: #00bbff !important;
  51. }
  52.  
  53. .ui_window__head__title {
  54.   order: 0 !important;
  55.   text-align: end;
  56.   margin-right: 3px;
  57.   color: #000;
  58. }
  59.  
  60. .ui_window__head__icon {
  61.   order: 1 !important;
  62. }
  63.  
  64. .ui_window__ok, .ui_window__cancel {
  65.   border-radius: 20px;
  66. }
  67.  
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement