about summary refs log tree commit diff
path: root/app/assets/stylesheets/tables.scss
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-28 18:45:13 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-28 18:45:13 +0100
commit27fc49d74546d689307e1e712e0b46ccce98867b (patch)
treed7eca67f2a322d656c22fced15e722e7b46f2da3 /app/assets/stylesheets/tables.scss
parent7e5e33df48e507e18a226edc8dfecbf554d38647 (diff)
Add simple admin overview of PuSH subscriptions
Diffstat (limited to 'app/assets/stylesheets/tables.scss')
-rw-r--r--app/assets/stylesheets/tables.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/stylesheets/tables.scss b/app/assets/stylesheets/tables.scss
new file mode 100644
index 000000000..89b35891d
--- /dev/null
+++ b/app/assets/stylesheets/tables.scss
@@ -0,0 +1,25 @@
+.table {
+  width: 100%;
+  max-width: 100%;
+  border-spacing: 0;
+  border-collapse: collapse;
+
+  th, td {
+    padding: 8px;
+    line-height: 1.42857143;
+    vertical-align: top;
+    border-top: 1px solid #ddd;
+    text-align: left;
+  }
+
+  & > thead > tr > th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #ddd;
+    border-top: 0;
+    font-weight: 500;
+  }
+}
+
+samp {
+  font-family: 'Roboto Mono', monospace;
+}