anyrun: add basic css
This commit is contained in:
parent
17bf8727ba
commit
067818d124
2 changed files with 31 additions and 1 deletions
|
@ -34,7 +34,7 @@ in {
|
|||
'';
|
||||
"applications.ron".text = ''
|
||||
Config(
|
||||
desktop_actions: true,
|
||||
desktop_actions: false,
|
||||
max_entries: 10,
|
||||
)
|
||||
'';
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
* {
|
||||
transition: 200ms ease-out;
|
||||
color: #cdd6f4;
|
||||
font-family: Monaspace Krypton;
|
||||
font-size: 1.0rem;
|
||||
}
|
||||
|
||||
#window,
|
||||
#match,
|
||||
#entry,
|
||||
#plugin,
|
||||
#main {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#match:selected {
|
||||
background:#2ac3de;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
box#main {
|
||||
background: #1a1b26;
|
||||
border: 1px solid #f7768e;
|
||||
border-radius: 24px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
entry#entry {
|
||||
border-color: transparent;
|
||||
}
|
Loading…
Reference in a new issue