45 lines
739 B
CSS
45 lines
739 B
CSS
window {
|
|
background-color: rgba(40, 40, 40, 0.9);
|
|
font-size: 20px;
|
|
font-family: 'Noto Sans CJK TC';
|
|
color: white;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#outer-box {
|
|
border: 1px solid transparent;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#entry {
|
|
padding: 0.3em 0.5em 0.3em 0.5em;
|
|
}
|
|
|
|
#text {
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
#entry:selected {
|
|
border-radius: 10px;
|
|
background: rgba(179, 199, 255, 0.9);
|
|
}
|
|
|
|
#text:selected {
|
|
color: rgba(40, 40, 40, 1);
|
|
font-weight: 700;
|
|
}
|
|
|
|
#input {
|
|
background-color: transparent;
|
|
color: white;
|
|
min-height: 60px;
|
|
font-weight: 700;
|
|
padding-left: 0.5em;
|
|
padding-right: 0.5em;
|
|
border: 3px solid grey;
|
|
border-radius: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|