50 lines
891 B
CSS
Executable File
50 lines
891 B
CSS
Executable File
window {
|
|
background-color: rgba(48, 52, 70, 0.95);
|
|
color: #c6d0f5;
|
|
}
|
|
|
|
/* search entry */
|
|
entry {
|
|
background-color: rgba(35, 38, 52, 0.2);
|
|
}
|
|
|
|
button, image {
|
|
background: none;
|
|
border: none
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba(202, 158, 230, 0.5);
|
|
}
|
|
|
|
|
|
/* in case you wanted to give category buttons a different look */
|
|
#category-button {
|
|
background-color: rgba(35, 38, 52, 1);
|
|
margin: 0 5px 10px 5px
|
|
}
|
|
|
|
#pinned-box {
|
|
background-color: rgba(140, 170, 238, 0.3);
|
|
border-radius: 10px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
#files-box {
|
|
background-color: rgba(140, 170, 238, 0.3);
|
|
padding: 5px;
|
|
border: 1px dotted #ca9ee6;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
#status-line-wrapper {
|
|
background-color: rgba(35, 38, 52, 1);
|
|
margin-bottom: -10px;
|
|
outline-offset: 0;
|
|
}
|
|
|
|
#status-label {
|
|
margin-bottom: 5px;
|
|
margin-top: 2px;
|
|
color: #ea999c;
|
|
} |