diff options
author | Tara <tbvanc@gmail.com> | 2016-06-01 03:57:34 -0500 |
---|---|---|
committer | Tara <tbvanc@gmail.com> | 2016-06-01 04:09:54 -0500 |
commit | 526e795f1c61c0b1d1cb44e50c7a413c211be553 (patch) | |
tree | 018712ce7ed53509def75b41bde364f43209e2bf /resources/servo.css | |
parent | 09e6f4ac546a77294d9af7fe0ff0bc344be8de91 (diff) | |
download | servo-526e795f1c61c0b1d1cb44e50c7a413c211be553.tar.gz servo-526e795f1c61c0b1d1cb44e50c7a413c211be553.zip |
Change the font-size property for input and textarea
Change the `font-size` property for `input` and `textarea` from 0.7em
to 0.8333em.
Diffstat (limited to 'resources/servo.css')
-rw-r--r-- | resources/servo.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/servo.css b/resources/servo.css index dd3d9440a91..59c4ff8bc2d 100644 --- a/resources/servo.css +++ b/resources/servo.css @@ -8,7 +8,7 @@ input { border: solid lightgrey 1px; color: black; font-family: sans-serif; - font-size: 0.7em; + font-size: 0.8333em; white-space: nowrap; text-align: left; line-height: 1.8; @@ -23,7 +23,7 @@ textarea { border: solid lightgrey 1px; color: black; font-family: sans-serif; - font-size: 0.7em; + font-size: 0.8333em; white-space: pre; } |