diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-09-29 19:11:07 -0400 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-09-29 19:11:07 -0400 |
commit | 959e36c9caf34d2d59f734793a3a1034563b4938 (patch) | |
tree | 03f902d05ec715a2484fd244824a017af931936b | |
parent | e250d681fe1ad6fb2aac071feaf00baa3e32b5bb (diff) |
css changes and additions for new input elements
-rw-r--r-- | system/admin/admin.go | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/system/admin/admin.go b/system/admin/admin.go index a4053ad..b7307e2 100644 --- a/system/admin/admin.go +++ b/system/admin/admin.go @@ -14,15 +14,21 @@ const adminHTML = `<!doctype html> <head> <title>CMS</title> <style type="text/css"> - label { + form { display: block; - margin-top: 11px; + margin: 11px 0; + } + label { } - input { + input, textarea, select { display: block; - margin-bottom: 11px; + margin: 11px 0 22px 0; padding: 2px; } + input[type=checkbox] { + display: inline-block; + margin-left: 11px; + } </style> </head> <body> |