summaryrefslogtreecommitdiff
path: root/src/main/resources/public/stylesheets/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/public/stylesheets/style.css')
-rw-r--r--src/main/resources/public/stylesheets/style.css62
1 files changed, 62 insertions, 0 deletions
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;
+}