diff options
Diffstat (limited to 'wofi/style.css')
-rw-r--r-- | wofi/style.css | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/wofi/style.css b/wofi/style.css new file mode 100644 index 0000000..8f79768 --- /dev/null +++ b/wofi/style.css @@ -0,0 +1,72 @@ +#entry { +border-radius: 5px; +padding: 7px; +margin: 0px 5px 0px 5px; +} + +@keyframes fadeIn { + from {opacity: 0;} + to {opacity: 1;} +} + +#entry:selected { +background-color: #5e81ac; +} + +#text:selected { +color: #d8dee9; +} + +#window { +/*background-color: #3b4252;*/ +background-color: #FF4252; +background-color: transparent; +/*border-radius: 15px;*/ +font-family: Product Sans; +animation: fadeIn; +animation-duration: 0.5s; +} + +#input { +border: 2px solid #5e81ac; +background-color: #4c566a; +padding: 6px; +margin: 15px; +margin-bottom: 0px; +font-size: 16px; +border-radius: 5px; +} + +#inner-box { +color: #d8dee9; +padding: 10px; +padding-top: 5px; +} + +#outer-box { +margin: 15px; +/*margin: 150px 3700px;*/ +padding: 25px; +/*border-radius: 15px;*/ +/*background-color: rgba(53,59,73,1.0);*/ +border: 2px solid #bf616a; +background-color: #3b4252; +/*box-shadow: 0px 0px 5px 0 #0F0F0F;*/ +} + +#scroll { +margin-top: 10px; +margin-bottom: 10px; +} + +#text { +font-size: 16px; +padding: 7px; +color: #d8dee9; +background-color: transparent; +} + +#img { + background-color: transparent; + padding: 5px; +} |