1
1
Fork 0
nixos/options/custom/programs/walker/style.css
Myned 0197eabd92
walker: refactor config
Signed-off-by: Myned <dev@bjork.tech>
2024-11-23 21:22:19 -06:00

52 lines
797 B
CSS

/***
/* !! Inherits system GTK theme
https://github.com/abenz1267/walker/blob/master/internal/config/themes/bare.css
https://docs.gtk.org/gtk4/css-properties.html
***/
/* Transparent background overlay */
#window {
background: none;
}
/* Visible window overlay */
#box {
background: #002b36;
border: 2px #073642 solid;
border-radius: 30px;
}
/* Input box */
#search entry {
border-radius: 30px;
margin: 4px;
padding: 8px;
}
/* Input box typeahead */
#search #typeahead {
opacity: 0.25;
}
/* List */
#list {
background: none;
}
/* List entry */
#list child {
border-radius: 25px;
margin: 0px 4px 4px;
padding: 8px;
}
/* List entry icon */
#list child #icon {
margin-right: 8px;
}
/* List entry subtext */
#list child #sub {
font-size: x-small;
opacity: 0.5;
}