dotfiles/.config/eww/dmp/eww.scss
2025-05-28 18:33:04 +02:00

66 lines
1.0 KiB
SCSS

// Global
* {
all: unset;
padding: 0;
}
.eversolo-widget {
background-color: #232935;
border-radius: 16px;
padding: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
color: #cdd6f4;
font-family: "JetBrains Mono", "Fira Sans", sans-serif;
}
.cover {
border-radius: 12px;
}
.model-label {
font-size: 14px;
font-weight: 500;
color: #5E6577;
}
.title-label {
font-size: 18px;
font-weight: 700;
color: #D7DEEB;
}
.artist-label {
font-size: 14px;
font-weight: 500;
color: #D7DEEB;
}
.info-label {
font-size: 13px;
color: #5E6577;
}
.ctrl-btn {
background-color: #313244;
color: #FF9B86;
font-size: 14px;
min-width: 28px;
min-height: 28px;
padding: 4px;
border-radius: 8px;
border: none;
font-family: inherit;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.ctrl-btn:hover {
background-color: #45475a;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.ctrl-btn:active {
background-color: #585b70;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
}