diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-27 16:06:37 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-27 17:00:47 +0100 |
commit | bf77c580c1e20400dbeb3bdbb7e3ddcd87880409 (patch) | |
tree | 5b510f5d967cba75adc3412704d56159b52fc478 /core | |
parent | 1f6259d9c284fb917210fc438c9ff30a4549aed0 (diff) | |
download | nextcloud-server-bf77c580c1e20400dbeb3bdbb7e3ddcd87880409.tar.gz nextcloud-server-bf77c580c1e20400dbeb3bdbb7e3ddcd87880409.zip |
general styles for the content area
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.css | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 0e6a080c9cd..8eb3bdd683e 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -151,9 +151,6 @@ transition: padding-bottom 500ms ease 0s; padding-bottom: 40px; } -#app-navigation .personalblock > legend { /* TODO @Raydiation: still needed? */ - padding: 10px 0; margin: 0; -} #app-navigation .error { color: #dd1144; } @@ -242,3 +239,22 @@ button.loading { padding-right: 30px; } + +/* general styles for the content area */ +.section { + display: block; + padding: 30px; + color: #555; + border-top: 1px solid #ddd; +} +.section h2 { + font-size: 20px; + font-weight: normal; + margin-bottom: 7px; +} +/* slight position correction of checkboxes and radio buttons */ +.section input[type="checkbox"], +.section input[type="radio"] { + vertical-align: -2px; + margin-right: 4px; +} |