71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
@define-color background #103c48;
|
|
@define-color background_highlight #184956;
|
|
@define-color foreground #adbcbc;
|
|
@define-color foreground_selected #cad8d9;
|
|
@define-color highlight #ed8649;
|
|
|
|
#entry {
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin: 0px 4px 0px 4px;
|
|
color: @foreground;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {opacity: 0;}
|
|
to {opacity: 1;}
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: @background;
|
|
padding: 5px;
|
|
color: @foreground_selected;
|
|
}
|
|
|
|
#entry:focus {
|
|
border: 1px solid @highlight;
|
|
}
|
|
|
|
#text {
|
|
color: @foreground;
|
|
}
|
|
#text:selected {
|
|
color: @foreground_selected;
|
|
}
|
|
|
|
|
|
#window {
|
|
animation-name: fadeIn;
|
|
animation-duration: 0.2s;
|
|
font-family: JetBrainsMono;
|
|
font-size: 14px;
|
|
background-color: @background;
|
|
}
|
|
|
|
#input {
|
|
border: none;
|
|
border-radius: 10px;
|
|
margin: 5px 5px 5px 5px;
|
|
padding: 8px;
|
|
background-color: @background_highlight;
|
|
color: @foreground;
|
|
}
|
|
|
|
#input:focus *{
|
|
border: none;
|
|
}
|
|
|
|
#input:focus {
|
|
border: 1px solid @highlight;
|
|
}
|
|
|
|
#inner-box {
|
|
border-radius: 10px;
|
|
margin: 5px;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
#outer-box {
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
}
|