42 lines
635 B
SCSS
42 lines
635 B
SCSS
@import "../../library/entry.scss";
|
|
|
|
$background: rgba(30, 30, 30, 0.8);
|
|
$foreground: #ffffff;
|
|
|
|
|
|
#window {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
box#main {
|
|
background-color: $background;
|
|
border: 1px solid $color2;
|
|
border-radius: $border-radius;
|
|
color: $foreground;
|
|
box-shadow: $box-shadow-inner-less;
|
|
}
|
|
|
|
entry {
|
|
padding: $input-padding;
|
|
border: none;
|
|
box-shadow: none;
|
|
color: $foreground
|
|
}
|
|
|
|
list#main {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
//padding: 0.5rem;
|
|
}
|
|
|
|
list#plugin {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
padding: 1rem;
|
|
}
|
|
|
|
label#match-desc {
|
|
font-size: 10px;
|
|
}
|
|
|
|
label#plugin {
|
|
font-size: 14px;
|
|
}
|