62 lines
835 B
CSS
Executable File
62 lines
835 B
CSS
Executable File
*{
|
|
border: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
window {
|
|
font-size: 14px;
|
|
font-family: "JetBrains Mono";
|
|
background-color: #191114;
|
|
border-radius: 8px;
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 10px 10px 20px 10px;
|
|
background-color: #191114;
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 10px;
|
|
background-color: #191114;
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#entry {
|
|
padding: 5px 10px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
#entry #text {
|
|
padding: 0px 0px 0px 10px;
|
|
font-weight: normal;
|
|
color: #e1bdc9;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #6e334d;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
padding: 0px 0px 0px 10px;
|
|
font-weight: normal;
|
|
color: #ffb0ce;
|
|
}
|
|
|
|
#input {
|
|
background: transparent;
|
|
margin: 0px 5px 0px 20px;
|
|
color: #ffb0ce;
|
|
padding: 5px;
|
|
}
|
|
|
|
#image {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
} |