From c569a4c58cf29778df28392b48e20ffebdbc518e Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 19 May 2013 01:14:42 +0200 Subject: o Initial import of the Scala version of the Collection+JSON explorer. --- src/main/resources/public/stylesheets/style.css | 62 +++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/main/resources/public/stylesheets/style.css (limited to 'src/main/resources/public/stylesheets/style.css') diff --git a/src/main/resources/public/stylesheets/style.css b/src/main/resources/public/stylesheets/style.css new file mode 100644 index 0000000..09dd30c --- /dev/null +++ b/src/main/resources/public/stylesheets/style.css @@ -0,0 +1,62 @@ +.sidebar-nav { + padding: 9px 0; +} + +.sidebar-nav-fixed { + position:fixed; + /* Only used with top, static navbar + top:60px; */ + top:20px; + width:21.97%; +} + +@media (max-width: 767px) { + .sidebar-nav-fixed { + width:auto; + } +} + +@media (max-width: 979px) { + .sidebar-nav-fixed { + position:static; + width: auto; + } +} + +/** + * Forms + */ +table.cj-form th { + text-align: right; + min-width: 300px; + padding-right: 20px; +} + +table.cj-form th div { + margin-bottom: 10px; +} + +table.cj-form tbody td, +table.cj-form tbody input { + width: 100%; +} + +/** + * Item's data table + */ +table.data-table { + margin-top: 1em; + margin-bottom: 1em; +} + +table.data-table th { + text-align: right; + padding-right: 1em; + font-weight: bold; + min-width: 120px; +} + +table.data-table th, +table.data-table td { + vertical-align: top; +} -- cgit v1.2.3