diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-25 15:48:20 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-25 15:48:20 +0200 |
commit | 693383234c68397c22bb94d1d93cb33c6a8ae939 (patch) | |
tree | 063fe3b2e7a2a8c0353a1542e26559a7c05d6fa1 /app/assets/stylesheets | |
parent | e9bc4a4a0822235afebbefa0c4d660b1be9ae52f (diff) |
Improved style of settings page
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/application.scss | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index a444a2ff2..fd0e257a7 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -127,7 +127,23 @@ body { margin-bottom: 15px; } - input[type=text], input[type=email], input[type=password] { + .file-field { + padding: 15px 0; + + label { + font-family: 'Roboto'; + font-size: 16px; + color: #fff; + width: 100px; + display: inline-block; + } + + input[type=file] { + width: 280px; + } + } + + input[type=text], input[type=email], input[type=password], textarea { background: transparent; border: 0; border-bottom: 2px solid #9baec8; @@ -137,6 +153,7 @@ body { display: block; width: 100%; outline: 0; + font-family: 'Roboto'; &:invalid { box-shadow: none; |