62 lines
1008 B
CSS
62 lines
1008 B
CSS
*{
|
|
border: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
window {
|
|
font-size: 14px;
|
|
font-family: "JetBrains Mono";
|
|
background-color: {{colors.surface.default.hex}};
|
|
border-radius: 8px;
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 10px 10px 20px 10px;
|
|
background-color: {{colors.surface.default.hex}};
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 10px;
|
|
background-color: {{colors.surface.default.hex}};
|
|
opacity: 0.90;
|
|
}
|
|
|
|
#entry {
|
|
padding: 5px 10px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
#entry #text {
|
|
padding: 0px 0px 0px 10px;
|
|
font-weight: normal;
|
|
color: {{colors.secondary.default.hex}};
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: {{colors.primary_container.default.hex}};
|
|
}
|
|
|
|
#entry:selected #text {
|
|
padding: 0px 0px 0px 10px;
|
|
font-weight: normal;
|
|
color: {{colors.primary.default.hex}};
|
|
}
|
|
|
|
#input {
|
|
background: transparent;
|
|
margin: 0px 5px 0px 20px;
|
|
color: {{colors.primary.default.hex}};
|
|
padding: 5px;
|
|
}
|
|
|
|
#image {
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
} |