23 lines
438 B
CSS
23 lines
438 B
CSS
#expander-box, #window, #input {
|
|
background-color: rgba(44, 37, 46, 0.7);
|
|
border-radius: 0;
|
|
color: white;
|
|
font-family: SourceCodePro;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
#window, #input {
|
|
border: 2px solid #81a1c1;
|
|
}
|
|
|
|
#expander-box {
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #2c3746;
|
|
border-top: 2px solid #eceff4;
|
|
border-bottom: 2px solid #eceff4;
|
|
border-radius: 0;
|
|
}
|