diff --git a/roles/wofi/files/style.css b/roles/wofi/files/style.css index aa1d51c..5c69337 100644 --- a/roles/wofi/files/style.css +++ b/roles/wofi/files/style.css @@ -1,43 +1,60 @@ @define-color grey rgba(32, 32, 32, 0.7); @define-color yellow rgba(243, 249, 157, 1); +@define-color darkgrey rgba(20, 20, 20, 0.8); @define-color transparent rgba(0, 0, 0, 0); window { - border: 10px solid @grey; + margin: 0px; background-color: @grey; font-size: 1.2em; } #input { + margin: 0px; + margin-right: 10px; + margin-left: 10px; border-bottom: 2px solid @yellow; border-radius: 0px; background-color: @transparent; } #inner-box { + margin: 0px; + margin-right: 10px; + margin-left: 10px; border-top: 2px solid @transparent; color: white; background-color: @transparent; } #outer-box { - margin: 10px; - border: 0px solid @transparent; + margin: 0px; + border: 0px solid; + background-color: @transparent; +} + +#scroll { + margin: 0px; + border: 0px solid; background-color: @transparent; } #entry{ - padding: 2px; + padding-left: 4px; + padding-right: 4px; margin: 0px; } -#img{ - -} - #entry:selected{ background-color: @yellow; + color: @darkgrey; + outline: 0px; + border-radius: 0px; +} + +#text:selected{ + background-color: @yellow; + color: @darkgrey; outline: 0px; - color: @grey; border-radius: 0px; }