first commit
This commit is contained in:
139
eww.scss
Normal file
139
eww.scss
Normal file
@@ -0,0 +1,139 @@
|
||||
$grey: #696969;
|
||||
$scarlet: #ff0000;
|
||||
|
||||
//Globals
|
||||
|
||||
* {
|
||||
all: unset;
|
||||
}
|
||||
|
||||
window {
|
||||
font-size: 10px;
|
||||
border-radius: 10px;
|
||||
text-shadow: 1px 1px 3px black;
|
||||
}
|
||||
|
||||
.bar {
|
||||
color: white; //font
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
//Widgets
|
||||
|
||||
button {
|
||||
padding: 0px 7px; //top-bottom, left-right
|
||||
margin: 3px;
|
||||
border: 1px solid white;
|
||||
border-radius: 5px;
|
||||
background-color: $grey;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: rgba(white, 0.5);
|
||||
border-color: black;
|
||||
color: black;
|
||||
}
|
||||
|
||||
slider {
|
||||
color: black;
|
||||
}
|
||||
|
||||
scale trough {
|
||||
background-color: rgba(black, 0.7);
|
||||
border-radius: 10px;
|
||||
min-height: 5px;
|
||||
min-width: 50px;
|
||||
margin-left: 5px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
scale trough highlight {
|
||||
background-color: white;
|
||||
color: black;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background-color: rgba($grey, 0.9);
|
||||
font-size: 10px;
|
||||
color: white;
|
||||
padding: 3px;
|
||||
margin: 10px 20px;
|
||||
border-radius: 5px;
|
||||
text-shadow: 1px 1px 3px black;
|
||||
}
|
||||
|
||||
calendar {
|
||||
background-color: rgba($grey, 0.95);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
circular-progress {
|
||||
color: white;
|
||||
background-color: rgba(black, 0.9);
|
||||
margin: 0px 3px;
|
||||
border-radius: 2;
|
||||
}
|
||||
|
||||
//Classes
|
||||
.island {
|
||||
border-radius: 10px;
|
||||
background-color: rgba($grey, 0.9);
|
||||
padding: 5px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.monitor {
|
||||
border-radius: 6px;
|
||||
background-color: rgba($grey, 0.9);
|
||||
padding: 5px;
|
||||
margin: 2px;
|
||||
box-shadow: 1px -1px 1px inset;
|
||||
}
|
||||
|
||||
.workspaces button{
|
||||
padding: 0px 7px; //top-bottom, left-right
|
||||
border: 1px solid white;
|
||||
border-radius: 5px;
|
||||
background-color: $grey;
|
||||
}
|
||||
|
||||
.workspaces button:hover {
|
||||
background-color: rgba(white, 0.5);
|
||||
border-color: black;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.active_workspace{
|
||||
box-shadow: 0px -2px 1px inset;
|
||||
}
|
||||
|
||||
.center {
|
||||
color: rgba(white, 0.9);
|
||||
}
|
||||
|
||||
.center button{
|
||||
padding: 0px 8px;
|
||||
margin: 5px;
|
||||
text-shadow: 0px 0px;
|
||||
}
|
||||
|
||||
.center button:hover {
|
||||
background-color: rgba(white, 0.3);
|
||||
color: black;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.timendate {
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.clock {
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.visualizer {
|
||||
font-size: 8px;
|
||||
text-shadow: 0px 0px;
|
||||
}
|
||||
Reference in New Issue
Block a user