61 lines
935 B
CSS
61 lines
935 B
CSS
* {
|
|
font-family: "Fira Code Nerd Font";
|
|
font-size: 22px;
|
|
}
|
|
|
|
window {
|
|
margin: 0px;
|
|
border: solid 3px #8be9fd;
|
|
border-radius: 10px;
|
|
background-origin: border-box;
|
|
background-clip: padding-box, border-box;
|
|
padding: 0;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border: none;
|
|
color: #f2f3f7;
|
|
border-radius: 10px;
|
|
background-color: #44475a;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
background-color: #282a36;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
background-color: #282a36;
|
|
padding: 5px;
|
|
}
|
|
|
|
#text {
|
|
border-radius: 15px;
|
|
margin: 5px;
|
|
border: none;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
#entry.activatable #text {
|
|
color: #282a36;
|
|
}
|
|
|
|
#entry > * {
|
|
color: #f8f8f2;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
#entry:selected {
|
|
border-radius: 15px;
|
|
background-color: #44475a;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
border-radius: 15px;
|
|
}
|