mirror of
https://github.com/NotXia/dotfiles.git
synced 2025-12-14 18:11:52 +01:00
45 lines
563 B
CSS
45 lines
563 B
CSS
* {
|
|
font-family: "Hack", monospace;
|
|
}
|
|
|
|
window {
|
|
background-color: #303030;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border-radius: 0px;
|
|
border: none;
|
|
background-color: #3a3a3a;
|
|
color: white;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: #3a3a3a;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 2px;
|
|
padding: 10px;
|
|
background-color: #303030;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
}
|
|
|
|
#text {
|
|
padding: 4px;
|
|
color: white;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #4b4b4b;
|
|
}
|
|
|
|
#text:selected {
|
|
background: transparent;
|
|
}
|