mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-11 02:56:27 +00:00
42 lines
668 B
Nix
42 lines
668 B
Nix
{
|
|
enable = true;
|
|
settings = {};
|
|
style = ''
|
|
window {
|
|
margin: 5px;
|
|
border: 2px solid red;
|
|
background-color: red;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border: 2px solid blue;
|
|
background-color: blue;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
border: 2px solid yellow;
|
|
background-color: yellow;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
border: 2px solid orange;
|
|
background-color: orange;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
border: 2px solid orange;
|
|
background-color: orange;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: 2px solid cyan;
|
|
background-color: cyan;
|
|
}
|
|
'';
|
|
}
|