dotfiles

git clone git://archive.git.mtrnord.blog/MTRNord/dotfiles.git
Log | Files | Refs | README

style.css (1726B)


      1 @define-color green #3c913b;
      2 @define-color yellow #eebf13;
      3 @define-color red #c43030;
      4 
      5 @define-color cyan #159f9e;
      6 @define-color brightred #f53c3c;
      7 
      8 * {
      9     border: none;
     10     border-radius: 0;
     11     font-family: 'Noto Sans';
     12     font-size: 15px;
     13 }
     14 
     15 window#waybar {
     16     background: rgba(43, 48, 59, 0.8);
     17     color: white;
     18 }
     19 
     20 #workspaces button {
     21     margin: 0 4px;
     22     padding: 3px 5px;
     23     background: transparent;
     24     color: #ccc;
     25     border-bottom: 3px solid #888;
     26 }
     27 
     28 #workspaces button:first-child {
     29     margin-left: 0;
     30 }
     31 
     32 #workspaces button.visible {
     33     border-bottom-color: #bbb;
     34 }
     35 
     36 #workspaces button.focused {
     37     color: white;
     38     border-bottom-color: white;
     39 }
     40 
     41 #workspaces button.urgent {
     42     color: @red;
     43     border-bottom-color: @red;
     44 }
     45 
     46 #workspaces button.urgent.focused {
     47     color: @brightred;
     48     border-bottom-color: @brightred;
     49 }
     50 
     51 #cpu, #memory, #pulseaudio, #clock, #custom-battery, #custom-wifi, #custom-mouse-bat,
     52 #custom-df-root, #custom-df-home, #custom-df-daten, #network, #custom-owncloud,
     53 #custom-mpris-volume, #custom-pacman {
     54     padding: 3px 5px;
     55     margin: 0 4px;
     56     color: #ccc;
     57     border-bottom: 3px solid #aaa;
     58 }
     59 
     60 #pulseaudio.muted, #custom-wifi.disabled, #custom-owncloud.inactive {
     61     color: #888;
     62     border-bottom-color: #888;
     63 }
     64 
     65 #custom-battery.charging, #custom-battery.error, #custom-mouse-bat.charging {
     66     border-bottom-color: white;
     67 }
     68 
     69 #custom-wifi.good-link-q {
     70     border-bottom-color: @green;
     71 }
     72 
     73 #custom-battery.low:not(.charging), #custom-wifi.bad-link-q {
     74     border-bottom-color: @yellow;
     75 }
     76 
     77 #custom-battery.very-low:not(.charging), #network.disconnected, #custom-wifi.disconnected {
     78     color: @red;
     79     border-bottom-color: @red;
     80 }
     81 
     82 #clock.clock {
     83     margin-right: 0;
     84 }