dotfiles/nwg-drawer/drawer.css

57 lines
828 B
CSS
Raw Normal View History

2024-05-14 20:04:52 +03:00
@import url("machiatto.css");
2024-05-14 20:30:02 +03:00
* {
font-family: "DejaVu Sans";
font-size: 10pt;
}
2024-05-14 20:04:52 +03:00
window {
background-color: shade(@base, 0.9);
2024-05-14 20:30:02 +03:00
color: @text;
2024-05-14 20:04:52 +03:00
}
/* search entry */
entry {
box-shadow: 0 0 6px 5px #2e3440;
2024-05-14 20:30:02 +03:00
background-color: @surface0;
2024-05-14 20:04:52 +03:00
}
button,
image {
background: none;
border: none;
2024-05-14 20:30:02 +03:00
box-shadow: none;
text-shadow: none;
2024-05-14 20:04:52 +03:00
margin: 4px;
}
button:hover {
2024-05-14 20:30:02 +03:00
background-color: @surface1;
2024-05-14 20:04:52 +03:00
}
button:focus {
2024-05-14 20:30:02 +03:00
background-color: @surface1;
2024-05-14 20:04:52 +03:00
}
/* in case you wanted to give category buttons a different look */
#category-button {
margin: 0 10px 0 10px;
2024-05-14 20:30:02 +03:00
color: @flamingo;
font-weight: bold;
}
#category-button:hover {
background-color: @surface0;
2024-05-14 20:04:52 +03:00
}
#pinned-box {
padding-bottom: 5px;
border-bottom: 1px dotted gray;
}
#files-box {
padding: 5px;
border: 1px dotted gray;
border-radius: 15px;
}