This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/ags/ags-config/style.scss

90 lines
1.6 KiB
SCSS
Raw Normal View History

2023-08-30 20:23:45 +01:00
$bg: rgba(40,40,40,0.8);
$fg: rgb(235,219,178);
$wsfg: rgb(235,219,178);
$wsbg: rgb(60,56,54);
$activewsbg: rgb(102,92,84);
$box-bg: rgb(80,73,69);
2023-10-08 10:51:15 +01:00
$box-border-radius: 10px;
2023-09-24 01:42:00 +01:00
* {
min-height: unset;
}
2023-08-30 20:23:45 +01:00
.bar {
2023-09-24 01:42:00 +01:00
min-height: 33px;
font-family: "JetBrainsMono Nerd Font";
font-size: 12px;
2023-08-30 20:23:45 +01:00
background-color: $bg;
color: $fg;
}
2023-09-24 01:42:00 +01:00
.workspaces {
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-08-30 20:23:45 +01:00
margin: 5px 0px 5px 10px;
2023-09-24 01:42:00 +01:00
font-size: 0px;
}
.workspaces button {
2023-10-08 10:51:15 +01:00
border-radius: 0;
2023-09-24 01:42:00 +01:00
background-color: $wsbg;
font-size: 10px;
}
.workspaces button.focused {
border-radius: 0px;
2023-09-25 14:30:25 +01:00
background-color: $activewsbg;
}
.workspaces button:first-child {
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius 0px 0px $box-border-radius;
2023-09-25 14:30:25 +01:00
}
.workspaces button:last-child {
2023-10-08 10:51:15 +01:00
border-radius: 0px $box-border-radius $box-border-radius 0px;
2023-08-30 20:23:45 +01:00
}
2023-09-24 01:42:00 +01:00
.windowTitle {
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-08-30 20:23:45 +01:00
padding: 0px 10px 0px 10px;
2023-09-24 01:42:00 +01:00
margin: 5px 0px 5px 10px;
2023-08-30 20:23:45 +01:00
}
2023-09-25 14:30:25 +01:00
.volume {
background-color: $box-bg;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-09-25 14:30:25 +01:00
padding: 0px 10px 0px 10px;
margin: 5px 5px 5px 0px;
}
2023-09-24 01:42:00 +01:00
.media {
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-08-30 20:23:45 +01:00
padding: 0px 10px 0px 10px;
margin: 5px 10px 5px 0px;
}
2023-09-24 01:42:00 +01:00
.date {
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
padding: 0px 10px 0px 10px;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-08-30 20:23:45 +01:00
margin: 5px 10px 5px 0px;
2023-09-24 01:42:00 +01:00
};
2023-08-30 20:23:45 +01:00
2023-09-24 01:42:00 +01:00
.tray {
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
padding: 0px 10px 0px 10px;
2023-10-08 10:51:15 +01:00
border-radius: $box-border-radius;
2023-08-30 20:23:45 +01:00
margin: 5px 10px 5px 0px;
}
2023-09-24 01:42:00 +01:00
.tray-icon {
font-size: 18px;
2023-08-30 20:23:45 +01:00
background-color: $box-bg;
2023-09-24 01:42:00 +01:00
padding: 2px;
2023-08-30 20:23:45 +01:00
}