diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-10-06 18:13:58 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-10-06 18:19:58 -0400 |
| commit | 4d78b32ce840bb804221f0208ee7cb0c8ffa8e02 (patch) | |
| tree | 7578a24d6cecca4f1d316332de64b46a976ceaac /public/assets/stylesheets | |
| parent | 1dae6e5dfce901cdadeebd2e191927dbc5a326f6 (diff) | |
setting font family & size
Diffstat (limited to 'public/assets/stylesheets')
| -rwxr-xr-x | public/assets/stylesheets/app.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 02bbe6a..1c20493 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -4,9 +4,11 @@ margin:0; padding:0; outline:0; - font-family: 'Lato', sans-serif; -webkit-font-smoothing: subpixel-antialiased; } +body,textarea,input { + font-family: 'Lato', sans-serif; +} *, *:before, *:after { moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; @@ -1597,7 +1599,10 @@ input[type="range"]::-webkit-slider-thumb { font-size: 12px; width: 100%; max-height: 200px; - max-width: 180px; +} +#textEditor.settings textarea { + max-height: none; + height: 290px; } .settings input[type="text"]:focus{ |
