Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Global Styles */
- * {
- border: none;
- border-radius: 10px;
- font-family: Hack Nerd Font;
- font-weight: bold;
- font-size: 15px;
- min-height: 21px;
- margin: 0px;
- padding: 0.5px;
- }
- /* Module Styles */
- .module {
- padding: 0px 10px;
- margin: 1px 1px;
- }
- /* Special Case: Left Margin for First Module in Left Section */
- .modules-left>widget:first-child .module {
- margin-left: -2px;
- }
- /* Special Case: Right Margin for Last Module in Right Section */
- .modules-right>widget:last-child .module {
- margin-right: 5px;
- }
- /* Window Styling */
- window#waybar {
- background-color: transparent;
- color: black;
- transition: background-color 0.5s;
- }
- /* Make window module transparent when no windows present */
- window#waybar.empty #window {
- background-color: transparent;
- background: transparent;
- }
- window#waybar.hidden {
- opacity: 0.2;
- }
- /* Tooltip styling */
- menu,
- tooltip {
- background: rgba(24, 25, 38, 0.5);
- border-radius: 10px;
- /* border: 0px solid; */
- /* border-image: linear-gradient(45deg, #FA8BFF, #2BD2FF) 1; */
- padding: 5px;
- }
- menu label,
- tooltip label {
- color: rgb(125, 196, 228);
- }
- /* Workspaces Button Styling */
- #workspaces button {
- color: rgb(125, 196, 228);
- background: transparent;
- font-weight: bolder;
- box-shadow: inset 0 -3px transparent;
- transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
- padding: 0 5px;
- }
- #workspaces button.active {
- color: black;
- border-bottom: 2px solid transparent;
- /* border-top: 2px solid transparent; */
- border-image: linear-gradient(45deg, #FA8BFF, #2BD2FF) 1;
- padding: 0 10px;
- }
- #workspaces button.focused {
- background: rgba(24, 25, 38, 0.6);
- }
- #workspaces button.visible {
- color: rgb(125, 196, 228);
- }
- #workspaces button.urgent {
- background: red;
- color: black;
- padding: 0 5px;
- }
- #workspaces button:hover {
- background: black;
- border: 1px solid transparent;
- border-image: linear-gradient(45deg, #FA8BFF, #2BD2FF) 1;
- padding: 0 5px;
- }
- /* Taskbar Button Styling */
- #taskbar button {
- padding: 0 1px;
- color: rgb(202, 211, 245);
- }
- #taskbar button.active {
- background: rgba(24, 25, 38, 0.6);
- border-bottom: 2px solid transparent;
- /* border-top: 2px solid transparent; */
- border-image: linear-gradient(45deg, #FA8BFF, #2BD2FF) 1;
- padding: 0 5px;
- }
- #taskbar button:hover {
- background: black;
- border: 1px solid transparent;
- border-image: linear-gradient(45deg, #FA8BFF, #2BD2FF) 1;
- padding: 0 5px;
- }
- /* Transparent Modules When Empty */
- #taskbar.empty,
- window#waybar.empty {
- background-color: transparent;
- }
- /* Specific Module Styles */
- #backlight,
- #cpu,
- #idle_inhibitor,
- #bluetooth,
- #custom-updates,
- #clock,
- #power,
- #privacy,
- #network,
- #wireplumber,
- #keyboard-state,
- #custom-notification,
- #taskbar,
- #user,
- #systemd-failed-units,
- #load,
- #jack,
- #image,
- #workspaces {
- background-color: rgba(24, 25, 38, 0.6);
- color: rgb(125, 196, 228);
- }
- #network.disconnected,
- #wireplumber.muted {
- color: red;
- }
- /* Focused Label Background */
- label:focus {
- background-color: rgba(24, 25, 38, 0.6);
- }
- /* Tray Styles */
- #tray {
- background-color: rgba(24, 25, 38, 0.6);
- }
- #tray>.needs-attention {
- padding: 0 5px;
- background-color: red;
- }
- /* Gradient Module Styles */
- #mpd,
- #mpris,
- #window {
- background: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #FA8BFF 90%);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement