dotfiles/eww/eww.scss

79 lines
1.6 KiB
SCSS
Raw Normal View History

$clr-primary: #883333;
$clr-background: rgba(0, 0, 0, 0.75);
.bar {
background-color: $clr-background;
.user-icon {
// &:hover {
// background-color: rgba(#888888, 0.2);
// }
.img {
background-image: url("file:///home/kalle/Pictures/Wallpapers/Boat.jpg");
background-size: cover;
border-radius: 100%;
margin: 5px;
}
}
.notifications, .audio, .clipboard {
font-size: 30px;
margin: 5px;
&:hover {
color: $clr-primary;
// background-color: rgba(#888888, 0.2);
}
}
.workspace {
.single, .single-selected {
margin: 5px;
border-radius: 100%;
border: 2px solid white;
}
.single-selected {
border-color: $clr-primary;
}
}
}
.audio {
background-color: $clr-background;
.audio-title {
font-size: 30px;
}
.media-player {
background-size: cover;
margin: 10px;
border-radius: 15px;
border: 2px solid black;
padding: 10px 20px 10px 20px;
.title {
font-size: 25px;
}
.artist {
font-size: 14px;
color: #aaaaaa;
}
.buttons {
.previous, .pause, .next {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 25px;
label {
margin: 10px;
font-size: 20px;
}
}
}
}
}