59 lines
1.4 KiB
SCSS
59 lines
1.4 KiB
SCSS
/* The name of the window itself */
|
|
#window {
|
|
background-color: rgba(24,24,24,0.6);
|
|
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
border-radius: 1rem;
|
|
font-size: 1.2rem;
|
|
/* The name of the box that contains everything */
|
|
#outer-box {
|
|
/* The name of the search bar */
|
|
#input {
|
|
background-color: rgba(24,24,24,0.8);
|
|
color: #f2f2f2;
|
|
border: none;
|
|
border-bottom: 1px solid rgba(24,24,24,0.2);
|
|
padding: 0.8rem 1rem;
|
|
font-size: 1.5rem;
|
|
border-radius: 1rem 1rem 0 0;
|
|
&:focus, &:focus-visible, &:active {
|
|
border: none;
|
|
outline: 2px solid transparent;
|
|
outline-offset: 2px;
|
|
}
|
|
}
|
|
|
|
/* The name of the scrolled window containing all of the entries */
|
|
#scroll {
|
|
/* The name of the box containing all of the entries */
|
|
#inner-box {
|
|
/* The name of all entries */
|
|
#entry {
|
|
color: #fff;
|
|
background-color: rgba(24,24,24,0.1);
|
|
padding: 0.6rem 1rem;
|
|
|
|
/* The name of all images in entries displayed in image mode */
|
|
#img {
|
|
width: 1rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
/* The name of all the text in entries */
|
|
#text {}
|
|
&:selected {
|
|
color: #fff;
|
|
background-color: rgba(255,255,255,0.1);
|
|
outline: none;
|
|
}
|
|
}
|
|
/* The name of all boxes shown when expanding */
|
|
/* entries with multiple actions */
|
|
#expander-box {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|