diff options
Diffstat (limited to 'chimere_example_static/chimere/css/form-compat.css')
-rw-r--r-- | chimere_example_static/chimere/css/form-compat.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/chimere_example_static/chimere/css/form-compat.css b/chimere_example_static/chimere/css/form-compat.css index 2aa8d23..f83672f 100644 --- a/chimere_example_static/chimere/css/form-compat.css +++ b/chimere_example_static/chimere/css/form-compat.css @@ -14,9 +14,9 @@ input::-webkit-input-placeholder { color: #999999; } +textarea, input { display: block; - padding: 6px 12px; font-size: 14px; line-height: 1.428571429; color: #555555; @@ -30,8 +30,13 @@ input { transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } +input{ + padding: 6px 12px; +} + +textarea:focus, input:focus { - border-color: #66afe9; + border-color: #81cf57; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); |