stylesheet.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .tiled {
  2. color: rgba(236, 94, 94, 1);
  3. opacity: 1;
  4. border-width: 3px;
  5. }
  6. .split {
  7. color: rgba(255, 246, 108, 1);
  8. opacity: 1;
  9. border-width: 3px;
  10. }
  11. .stacked {
  12. color: rgba(247, 162, 43, 1);
  13. opacity: 1;
  14. border-width: 3px;
  15. }
  16. .tabbed {
  17. color: rgba(17, 199, 224, 1);
  18. opacity: 1;
  19. border-width: 3px;
  20. }
  21. .floated {
  22. color: rgba(180, 167, 214, 1);
  23. border-width: 3px;
  24. opacity: 1;
  25. }
  26. .window-tiled-border {
  27. border-width: 3px;
  28. border-color: rgba(236, 94, 94, 1);
  29. border-style: solid;
  30. border-radius: 14px;
  31. }
  32. .window-split-border {
  33. border-width: 3px;
  34. border-color: rgba(255, 246, 108, 1);
  35. border-style: solid;
  36. border-radius: 14px;
  37. }
  38. .window-split-horizontal {
  39. border-left-width: 0;
  40. border-top-width: 0;
  41. border-bottom-width: 0;
  42. }
  43. .window-split-vertical {
  44. border-left-width: 0;
  45. border-top-width: 0;
  46. border-right-width: 0;
  47. }
  48. .window-stacked-border {
  49. border-width: 3px;
  50. border-color: rgba(247, 162, 43, 1);
  51. border-style: solid;
  52. border-radius: 14px;
  53. }
  54. .window-tabbed-border {
  55. border-width: 3px;
  56. border-color: rgba(17, 199, 224, 1);
  57. border-style: solid;
  58. border-radius: 14px;
  59. }
  60. .window-tabbed-bg {
  61. border-radius: 8px;
  62. }
  63. .window-tabbed-tab {
  64. background-color: rgba(54, 47, 45, 1);
  65. border-color: rgba(17, 199, 224, 0.6);
  66. border-width: 1px;
  67. border-radius: 8px;
  68. color: white;
  69. margin: 1px;
  70. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  71. }
  72. .window-tabbed-tab-active {
  73. background-color: rgba(17, 199, 224, 1);
  74. color: black;
  75. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  76. }
  77. .window-tabbed-tab-close {
  78. padding: 3px;
  79. margin: 4px;
  80. border-radius: 16px;
  81. width: 16px;
  82. background-color: #e06666;
  83. }
  84. .window-tabbed-tab-icon {
  85. margin: 3px;
  86. }
  87. .window-floated-border {
  88. border-width: 3px;
  89. border-color: rgba(180, 167, 214, 1);
  90. border-style: solid;
  91. border-radius: 14px;
  92. }
  93. .window-tilepreview-tiled {
  94. border-width: 1px;
  95. border-color: rgba(236, 94, 94, 0.4);
  96. border-style: solid;
  97. border-radius: 14px;
  98. background-color: rgba(236, 94, 94, 0.3);
  99. }
  100. .window-tilepreview-stacked {
  101. border-width: 1px;
  102. border-color: rgba(247, 162, 43, 0.4);
  103. border-style: solid;
  104. border-radius: 14px;
  105. background-color: rgba(247, 162, 43, 0.3);
  106. }
  107. .window-tilepreview-tabbed {
  108. border-width: 1px;
  109. border-color: rgba(18, 199, 224, 0.4);
  110. border-style: solid;
  111. border-radius: 14px;
  112. background-color: rgba(17, 199, 224, 0.3);
  113. }