diff --git a/dencoder.css b/dencoder.css index f6565f9..8a8ab1d 100644 --- a/dencoder.css +++ b/dencoder.css @@ -1,15 +1,38 @@ body { } + div.wrapper { margin-bottom: 0.5em; margin-left: auto; margin-right: auto; width: 50%; } + textarea.input { + background-color: #f8f8f8; + border-color: #f0f0f0; + border-radius: 0.5em; + border-width: 1px; display: block; + font-family: sans-serif; + font-size: 80%; height: 150px; + padding: 0.1em 0.3em; width: 100%; } -input.conversion { + +textarea.input:focus, textarea.input:hover { background-color: #fff; + border-color: #000; +} + +select.conversion { + background-color: #f8f8f8; + border-color: #f0f0f0; + border-radius: 0.2em; + border-width: 1px; +} + +select.conversion:focus, select.conversion:hover { + background-color: #fff; + border-color: #000; } diff --git a/dencoder.css~ b/dencoder.css~ new file mode 100644 index 0000000..7e569ae --- /dev/null +++ b/dencoder.css~ @@ -0,0 +1,30 @@ +body { +} + +div.wrapper { + margin-bottom: 0.5em; + margin-left: auto; + margin-right: auto; + width: 50%; +} + +textarea.input { + background-color: #f8f8f8; + border-color: #f0f0f0; + border-radius: 0.5em; + border-width: 1px; + display: block; + font-family: sans-serif; + font-size: 80%; + height: 150px; + padding: 0.1em 0.3em; + width: 100%; +} + +textarea.input:focus,textarea.input:hover { + background-color: #fff; + border-color: #000; +} + +input.conversion { +}