48 lines
809 B
CSS
48 lines
809 B
CSS
* {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.background {
|
|
background-color: rgba(0x00, 0x10, 0x17, 0.4);
|
|
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-left-width: 0;
|
|
border-radius: 10px;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-color: rgba(0x59, 0x59, 0x59, 0.7);
|
|
}
|
|
|
|
#bar {
|
|
margin: 7px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.popup {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.workspaces > .item {
|
|
padding: 4px 0;
|
|
border-radius: 0;
|
|
border-left-width: 4px;
|
|
border-style: solid;
|
|
border-color: transparent;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.workspaces > .item.focused {
|
|
border-color: rgba(0x59, 0x59, 0x59, 0.5);
|
|
background-color: rgba(0xff, 0xff, 0xff, 0.1);
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.clock {
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|