diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-22 19:38:47 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-22 19:39:44 +0200 |
commit | a9e40a3d80435431f689b8d19005dd77a8f50224 (patch) | |
tree | 48573a1f1ec9c14789c529de3b8fb8badfb20444 /app/assets | |
parent | 17122df80dc7e85910a9cfa049d2e33ef84288c6 (diff) |
Adding OAuth access scopes, fixing OAuth authorization UI, adding rate limiting
to the API
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/forms.scss | 88 |
1 files changed, 46 insertions, 42 deletions
diff --git a/app/assets/stylesheets/forms.scss b/app/assets/stylesheets/forms.scss index 8abbbdaee..f7677ac9d 100644 --- a/app/assets/stylesheets/forms.scss +++ b/app/assets/stylesheets/forms.scss @@ -85,18 +85,7 @@ } } - .prompt { - font-size: 16px; - color: #9baec8; - text-align: center; - - .prompt-highlight { - font-weight: 500; - color: #fff; - } - } - - code.copypasteable { + code { display: block; font-family: 'Roboto Mono', monospace; font-weight: 400; @@ -110,42 +99,42 @@ .actions { margin-top: 30px; + } - button { - display: block; - width: 100%; - border: 0; - border-radius: 4px; - background: #2b90d9; - color: #fff; - font-size: 18px; - padding: 10px; - text-transform: uppercase; - cursor: pointer; - font-weight: 500; - outline: 0; - margin-bottom: 10px; + button { + display: block; + width: 100%; + border: 0; + border-radius: 4px; + background: #2b90d9; + color: #fff; + font-size: 18px; + padding: 10px; + text-transform: uppercase; + cursor: pointer; + font-weight: 500; + outline: 0; + margin-bottom: 10px; - &:hover { - background-color: lighten(#2b90d9, 5%); - } + &:hover { + background-color: lighten(#2b90d9, 5%); + } - &:active, &:focus { - position: relative; - top: 1px; - background-color: darken(#2b90d9, 5%); - } + &:active, &:focus { + position: relative; + top: 1px; + background-color: darken(#2b90d9, 5%); + } - &.negative { - background: #df405a; + &.negative { + background: #df405a; - &:hover { - background-color: lighten(#df405a, 5%); - } + &:hover { + background-color: lighten(#df405a, 5%); + } - &:active, &:focus { - background-color: darken(#df405a, 5%); - } + &:active, &:focus { + background-color: darken(#df405a, 5%); } } } @@ -180,3 +169,18 @@ } } +.oauth-prompt { + margin-bottom: 30px; + text-align: center; + color: #9baec8; + + h2 { + font-size: 16px; + margin-bottom: 30px; + } + + strong { + color: #d9e1e8; + font-weight: 500; + } +} |