53 lines
856 B
SCSS
53 lines
856 B
SCSS
@import "../../theming/library/entry.scss";
|
|
|
|
window {
|
|
background-color: $background-semitransparent;
|
|
color: $foreground
|
|
}
|
|
|
|
/* search entry */
|
|
entry {
|
|
background-color: rgba($color3, 0.2);
|
|
}
|
|
|
|
entry:focus {
|
|
background-color: rgba($color3, 0.3);
|
|
}
|
|
|
|
button {
|
|
background: transparent;
|
|
box-shadow: none;
|
|
border-radius: $border-radius;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba($color7, 0.1);
|
|
}
|
|
|
|
button:focus {
|
|
background-color: rgba($color8, 0.5);
|
|
}
|
|
|
|
/* in case you wanted to give category buttons a different look */
|
|
#category-button {
|
|
margin: 1rem;
|
|
}
|
|
|
|
#pinned-box {
|
|
border-bottom: 1px dotted $color2;
|
|
}
|
|
|
|
#files-box {
|
|
padding: 0px;
|
|
border: 1px dotted $color4;
|
|
border-radius: $border-radius;
|
|
}
|
|
|
|
/* math operation result label */
|
|
#math-label {
|
|
background: $background;
|
|
padding: 0;
|
|
|
|
font-weight: bold;
|
|
font-size: 32px;
|
|
}
|