123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- .tiled {
- color: rgba(236, 94, 94, 1);
- opacity: 1;
- border-width: 3px;
- }
- .split {
- color: rgba(255, 246, 108, 1);
- opacity: 1;
- border-width: 3px;
- }
- .stacked {
- color: rgba(247, 162, 43, 1);
- opacity: 1;
- border-width: 3px;
- }
- .tabbed {
- color: rgba(17, 199, 224, 1);
- opacity: 1;
- border-width: 3px;
- }
- .floated {
- color: rgba(180, 167, 214, 1);
- border-width: 3px;
- opacity: 1;
- }
- .window-tiled-border {
- border-width: 3px;
- border-color: rgba(236, 94, 94, 1);
- border-style: solid;
- border-radius: 14px;
- }
- .window-split-border {
- border-width: 3px;
- border-color: rgba(255, 246, 108, 1);
- border-style: solid;
- border-radius: 14px;
- }
- .window-split-horizontal {
- border-left-width: 0;
- border-top-width: 0;
- border-bottom-width: 0;
- }
- .window-split-vertical {
- border-left-width: 0;
- border-top-width: 0;
- border-right-width: 0;
- }
- .window-stacked-border {
- border-width: 3px;
- border-color: rgba(247, 162, 43, 1);
- border-style: solid;
- border-radius: 14px;
- }
- .window-tabbed-border {
- border-width: 3px;
- border-color: rgba(17, 199, 224, 1);
- border-style: solid;
- border-radius: 14px;
- }
- .window-tabbed-bg {
- border-radius: 8px;
- }
- .window-tabbed-tab {
- background-color: rgba(54, 47, 45, 1);
- border-color: rgba(17, 199, 224, 0.6);
- border-width: 1px;
- border-radius: 8px;
- color: white;
- margin: 1px;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
- }
- .window-tabbed-tab-active {
- background-color: rgba(17, 199, 224, 1);
- color: black;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
- }
- .window-tabbed-tab-close {
- padding: 3px;
- margin: 4px;
- border-radius: 16px;
- width: 16px;
- background-color: #e06666;
- }
- .window-tabbed-tab-icon {
- margin: 3px;
- }
- .window-floated-border {
- border-width: 3px;
- border-color: rgba(180, 167, 214, 1);
- border-style: solid;
- border-radius: 14px;
- }
- .window-tilepreview-tiled {
- border-width: 1px;
- border-color: rgba(236, 94, 94, 0.4);
- border-style: solid;
- border-radius: 14px;
- background-color: rgba(236, 94, 94, 0.3);
- }
- .window-tilepreview-stacked {
- border-width: 1px;
- border-color: rgba(247, 162, 43, 0.4);
- border-style: solid;
- border-radius: 14px;
- background-color: rgba(247, 162, 43, 0.3);
- }
- .window-tilepreview-tabbed {
- border-width: 1px;
- border-color: rgba(18, 199, 224, 0.4);
- border-style: solid;
- border-radius: 14px;
- background-color: rgba(17, 199, 224, 0.3);
- }
|