audrey/resources/style.css

52 lines
1.3 KiB
CSS
Raw Normal View History

2024-11-13 21:28:49 +00:00
window.background > * {
/* from amberol */
background: linear-gradient(127deg, color-mix(in srgb, var(--background-color-0) 55%, transparent), color-mix(in srgb, var(--background-color-0) 0%, transparent) 70.71%),
linear-gradient(217deg, color-mix(in srgb, var(--background-color-1) 55%, transparent), color-mix(in srgb, var(--background-color-1) 0%, transparent) 70.71%),
linear-gradient(336deg, color-mix(in srgb, var(--background-color-2) 55%, transparent), color-mix(in srgb, var(--background-color-2) 0%, transparent) 70.71%);
transition-property: background;
transition-duration: 250ms;
transition-timing-function: ease;
}
2024-10-12 18:41:03 +00:00
#seek-scale slider {
margin: 0px;
opacity: 0%;
min-width: 10px;
min-height: 10px;
}
2024-10-12 18:44:10 +00:00
#volume-scale slider {
margin: -5px;
min-width: 15px;
min-height: 15px;
}
2024-10-19 12:04:52 +00:00
2024-11-13 17:10:45 +00:00
#play-queue listview {
background-color: rgba(0,0,0,0);
}
2024-11-05 15:25:17 +00:00
/* make drag and drop indicator take up entire perimeter */
#play-queue listview row {
padding: 0;
}
#play-queue .playing {
background-color: color-mix(in srgb, var(--accent-bg-color) 40%, transparent);
}
#play-queue .playing label.title {
2024-10-19 12:04:52 +00:00
font-weight: bold;
}
2024-11-07 20:54:01 +00:00
2024-11-13 17:10:45 +00:00
gridview.albums {
background-color: rgba(0,0,0,0);
}
2024-11-07 20:54:01 +00:00
gridview.albums child {
margin: 10px;
}
gridview.albums child image {
margin: 10px;
}