Files
dotfiles/ags/style.css
T
2026-04-25 02:06:01 -04:00

57 lines
840 B
CSS

@import "./colors.css";
* {
all: unset;
}
.MediaWindow {
background-color: transparent;
}
.media-container {
background-color: alpha(@background, 0.85);
border-radius: 8px;
border: 2px solid alpha(@color4, 0.5);
padding: 8px 15px;
font-family: "JetBrainsMono Nerd Font", sans-serif;
}
.media-cover {
min-width: 64px;
min-height: 64px;
border-radius: 4px;
background-size: cover;
background-position: center;
}
.media-info-box {
margin-left: 10px;
}
.media-title {
color: @foreground;
font-size: 14px;
font-weight: bold;
}
.media-artist {
color: @foreground;
font-size: 13px;
opacity: 0.8;
}
.media-controls {
/* Box spacing is handled by the component */
}
.media-btn {
color: @color5;
font-size: 16px;
padding: 0 5px;
transition: all 0.2s;
}
.media-btn:hover {
color: @color4;
}