forked from poz/niksos
43 lines
683 B
SCSS
43 lines
683 B
SCSS
* {
|
|
all: unset; //Unsets everything so you can style everything from scratch
|
|
border-radius: 10px;
|
|
font-family: Material Design Icons;
|
|
font-size: 16px;
|
|
color: #cdd6f4;
|
|
}
|
|
|
|
//Global Styles
|
|
.bar {
|
|
padding: 10px;
|
|
background-color: rgba(#1e1e2e, 0.5);
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.time {
|
|
color: #f5c2e7;
|
|
}
|
|
|
|
tooltip.background {
|
|
background-color: #11111b;
|
|
border-radius: 10px;
|
|
color: #cdd6f4;
|
|
}
|
|
|
|
tooltip label {
|
|
margin: 6px;
|
|
}
|
|
|
|
.workspaces button {
|
|
font-size: 12px;
|
|
background-color: #181825;
|
|
border-radius: 15px;
|
|
padding-top: 5px;
|
|
padding-right: 5px;
|
|
padding-bottom: 5px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.workspaces button.active {
|
|
background-color: #89b4fa;
|
|
}
|
|
|