diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 00:00:58 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 00:00:58 +0200 |
commit | 9c17aa41edd76910fa288fa9120c93e0f4b58169 (patch) | |
tree | 6588761140ceae401da3d1d741f35ff24208fe3f /core | |
parent | dfecdb9700625fecc7d51eb535dd25b1bba23948 (diff) | |
download | nextcloud-server-9c17aa41edd76910fa288fa9120c93e0f4b58169.tar.gz nextcloud-server-9c17aa41edd76910fa288fa9120c93e0f4b58169.zip |
Format CSS in a readable way
Diffstat (limited to 'core')
-rw-r--r-- | core/css/auth.css | 52 |
1 files changed, 44 insertions, 8 deletions
diff --git a/core/css/auth.css b/core/css/auth.css index 2dedad5dd0f..9dde5d5f3db 100644 --- a/core/css/auth.css +++ b/core/css/auth.css @@ -1,8 +1,44 @@ -h2 { font-size:2em; font-weight:bold; margin-bottom:1em; white-space:nowrap; } -ul.scopes { list-style:disc; } -ul.scopes li { white-space:nowrap; } -h2 img { width: 50% } -#oauth { margin:4em auto 2em; width:20em; } -#allow-auth { background-color:#5c3; text-shadow:#5e3 0 1px 0; color:#fff; --webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; } -#deny-auth { padding:0; margin:.7em; border:0; background:none; font-size:1.2em; -moz-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; -webkit-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; } +h2 +{ + font-size: 2em; + font-weight: bold; + margin-bottom: 1em; + white-space: nowrap; +} +ul.scopes +{ + list-style: disc; +} +ul.scopes li +{ + white-space: nowrap; +} +h2 img +{ + width: 50%; +} +#oauth +{ + margin: 4em auto 2em; + width: 20em; +} +#allow-auth +{ + background-color: #5c3; + box-shadow: 0 1px 1px #fff, 0 1px 1px #5f3 inset; + color: #fff; + moz-box-shadow: 0 1px 1px #fff, 0 1px 1px #5f3 inset; + text-shadow: #5e3 0 1px 0; + webkit-box-shadow: 0 1px 1px #fff, 0 1px 1px #5f3 inset; +} +#deny-auth +{ + background: none; + border: 0; + box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; + font-size: 1.2em; + margin: .7em; + moz-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; + padding: 0; + webkit-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; +}
\ No newline at end of file |