made code look nicer + addet right colors
This commit is contained in:
parent
8eb7da97f6
commit
886f440c47
1 changed files with 43 additions and 5 deletions
48
style.css
48
style.css
|
@ -23,6 +23,7 @@
|
||||||
border-left: transparent;
|
border-left: transparent;
|
||||||
border-right: transparent;
|
border-right: transparent;
|
||||||
border-bottom: solid 2px currentcolor;
|
border-bottom: solid 2px currentcolor;
|
||||||
|
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +32,7 @@
|
||||||
border-left: solid 2px currentcolor;
|
border-left: solid 2px currentcolor;
|
||||||
border-right: solid 2px currentcolor;
|
border-right: solid 2px currentcolor;
|
||||||
border-bottom: solid 2px currentcolor;
|
border-bottom: solid 2px currentcolor;
|
||||||
|
|
||||||
border-radius: 66px;
|
border-radius: 66px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,19 +41,22 @@
|
||||||
border-left: solid 2px currentcolor;
|
border-left: solid 2px currentcolor;
|
||||||
border-right: solid 2px currentcolor;
|
border-right: solid 2px currentcolor;
|
||||||
border-bottom: transparent;
|
border-bottom: transparent;
|
||||||
|
|
||||||
border-radius: 33px;
|
border-radius: 33px;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
to {
|
||||||
border-top: solid 2px currentcolor;
|
border-top: solid 2px currentcolor;
|
||||||
|
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
/* border-radius: 0rem 0rem 1rem 1rem; */
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
border: solid 2px currentcolor;
|
border: solid 2px currentcolor;
|
||||||
|
|
||||||
background: black;
|
background: black;
|
||||||
|
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,6 +64,7 @@ tooltip {
|
||||||
#weather,
|
#weather,
|
||||||
#info {
|
#info {
|
||||||
border-top: solid 1px currentcolor;
|
border-top: solid 1px currentcolor;
|
||||||
|
|
||||||
transition: 650ms;
|
transition: 650ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,33 +73,44 @@ tooltip {
|
||||||
#info:hover {
|
#info:hover {
|
||||||
border-bottom: solid 2px currentcolor;
|
border-bottom: solid 2px currentcolor;
|
||||||
border-top: solid 0px transparent;
|
border-top: solid 0px transparent;
|
||||||
|
|
||||||
transition: 350ms;
|
transition: 350ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
|
|
||||||
color: #fdf6e3;
|
color: #fdf6e3;
|
||||||
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
||||||
transition: 300ms;
|
transition: 300ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
border: solid 2px rgba(160, 160, 160, 0.329);
|
border: solid 2px rgba(160, 160, 160, 0.329);
|
||||||
|
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
transition: 700ms;
|
|
||||||
|
transition: 600ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar.empty {
|
window#waybar.empty {
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
|
|
||||||
border: solid 2px rgba(136, 136, 136, 0.8);
|
border: solid 2px rgba(136, 136, 136, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar.fullscreen {
|
window#waybar.fullscreen {
|
||||||
background: rgba(55, 55, 55, 0.6);
|
background: rgba(55, 55, 55, 0.6);
|
||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
border: solid 3px rgba(145, 11, 53, 0.8);
|
border: solid 3px rgba(145, 11, 53, 0.8);
|
||||||
border-radius: 8px 8px 4px 4px;
|
border-radius: 8px 8px 4px 4px;
|
||||||
|
|
||||||
transition: 300ms;
|
transition: 300ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,34 +118,43 @@ window#waybar.fullscreen {
|
||||||
border-top: solid 1px currentcolor;
|
border-top: solid 1px currentcolor;
|
||||||
border-right: solid 1px currentcolor;
|
border-right: solid 1px currentcolor;
|
||||||
border-bottom: solid 1px transparent;
|
border-bottom: solid 1px transparent;
|
||||||
|
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
|
|
||||||
transition: 200ms;
|
transition: 200ms;
|
||||||
border-radius: 2px 2px 2 0;
|
border-radius: 2px 2px 2 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
transition: ease-in-out 400ms;
|
|
||||||
|
transition: 200ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.empty {}
|
#workspaces button.empty {}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color: rgba(255, 238, 0, 0.9);
|
color: rgba(255, 238, 0, 0.9);
|
||||||
|
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
|
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
|
|
||||||
border-top: solid 2px currentcolor;
|
border-top: solid 2px currentcolor;
|
||||||
border-right: solid 2px currentcolor;
|
border-right: solid 2px currentcolor;
|
||||||
|
|
||||||
border-radius: 8px 4px 2px 0;
|
border-radius: 8px 4px 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
color: red;
|
color: red;
|
||||||
|
|
||||||
animation: urgent-workspace ease-out 4s infinite;
|
animation: urgent-workspace ease-out 4s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,7 +173,7 @@ window#waybar.fullscreen {
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery {
|
#battery {
|
||||||
color: #859900;
|
color: #1ea54c;
|
||||||
}
|
}
|
||||||
|
|
||||||
#network {
|
#network {
|
||||||
|
@ -155,7 +181,7 @@ window#waybar.fullscreen {
|
||||||
}
|
}
|
||||||
|
|
||||||
#disk {
|
#disk {
|
||||||
color: #b58900;
|
color: #c6673e;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-power {
|
#custom-power {
|
||||||
|
@ -169,9 +195,13 @@ window#waybar.fullscreen {
|
||||||
#custom-powerm,
|
#custom-powerm,
|
||||||
#custom-power {
|
#custom-power {
|
||||||
padding: 0.2rem 1rem;
|
padding: 0.2rem 1rem;
|
||||||
|
|
||||||
margin: 0 1px;
|
margin: 0 1px;
|
||||||
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
||||||
border-top: solid 1px currentcolor;
|
border-top: solid 1px currentcolor;
|
||||||
|
|
||||||
transition: 350ms;
|
transition: 350ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,9 +211,12 @@ window#waybar.fullscreen {
|
||||||
#custom-lock:hover,
|
#custom-lock:hover,
|
||||||
#custom-power:hover {
|
#custom-power:hover {
|
||||||
border-top: solid 2px red;
|
border-top: solid 2px red;
|
||||||
|
|
||||||
transition: 250ms;
|
transition: 250ms;
|
||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
/* border-radius: 2rem; */
|
/* border-radius: 2rem; */
|
||||||
|
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,9 +230,13 @@ window#waybar.fullscreen {
|
||||||
#not-power,
|
#not-power,
|
||||||
#tray {
|
#tray {
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
|
|
||||||
margin: 0px 4px 0;
|
margin: 0px 4px 0;
|
||||||
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
||||||
border-top: solid 2px transparent;
|
border-top: solid 2px transparent;
|
||||||
|
|
||||||
transition: 550ms;
|
transition: 550ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,5 +248,6 @@ window#waybar.fullscreen {
|
||||||
#clock:hover,
|
#clock:hover,
|
||||||
#network:hover {
|
#network:hover {
|
||||||
border-top: solid 2px currentcolor;
|
border-top: solid 2px currentcolor;
|
||||||
|
|
||||||
transition: 250ms;
|
transition: 250ms;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue