summaryrefslogtreecommitdiffstats
path: root/data/templates/css/base.css
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/css/base.css')
-rw-r--r--data/templates/css/base.css91
1 files changed, 91 insertions, 0 deletions
diff --git a/data/templates/css/base.css b/data/templates/css/base.css
new file mode 100644
index 0000000..e273808
--- /dev/null
+++ b/data/templates/css/base.css
@@ -0,0 +1,91 @@
+/* sane margins for main content */
+.content {
+ margin-top: 55px;
+ margin-left: 20px;
+ margin-right: 20px;
+}
+
+/* class for tables without 100% width */
+.table-nonfluid {
+ width: auto;
+}
+
+/* navbar padding from sides */
+.navbar-fixed-top .navbar-inner {
+ padding-right: 5px;
+ padding-left: 5px;
+}
+
+/* statistics */
+#overviewLegend li > div {
+ display: inline-block;
+ margin-right: 4px;
+}
+
+#overviewLegend li {
+ list-style: none;
+}
+
+#placeholder .legend {
+ visibility: hidden;
+}
+
+#overviewLegend label {
+ display: inline;
+}
+
+#overviewLegend input {
+ margin: 0;
+}
+
+/* dropdown menu with button on the right */
+.btn-group > .cornered-dropdown-toggle {
+ border-top-right-radius: 0px;
+ border-bottom-right-radius: 0px;
+}
+
+.btn-group > .dropdown-menu + .btn {
+ border-left: 0px;
+}
+
+/* disabled entries in dropdown */
+.dropdown-menu .disabled {
+ color: #999;
+}
+
+.two-columns {
+ overflow: hidden;
+ width: 400px;
+}
+
+.two-columns li {
+ width: 20%;
+ float: left;
+ display: inline;
+}
+
+.hidden {
+ display: none;
+}
+
+.table-nonfluid {
+ width: auto !important;
+}
+
+.text-right {
+ text-align: right !important;
+}
+
+table.user-entry th {
+ min-width: 150px;
+}
+
+table.user-entry td {
+ min-width: 350px;
+}
+
+@media print {
+ .navbar-fixed-top {
+ display: none !important;
+ }
+}