about summary refs log tree commit diff
path: root/bh20simplewebuploader/static
diff options
context:
space:
mode:
Diffstat (limited to 'bh20simplewebuploader/static')
-rw-r--r--bh20simplewebuploader/static/main.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css
index e1a06c9..1003719 100644
--- a/bh20simplewebuploader/static/main.css
+++ b/bh20simplewebuploader/static/main.css
@@ -339,3 +339,28 @@ footer {
         flex-direction: column;
     }
 }
+
+.blog-table {
+    display: table;
+    width: 100%;
+}
+.blog-table-row {
+    display: table-row;
+}
+.blog-table-heading {
+    display: table-header-group;
+    background-color: #ddd;
+}
+.blog-table-cell, .blog-table-head {
+    display: table-cell;
+    padding: 3px 10px;
+    border: 1px solid #999999;
+}
+.blog-table-footer {
+    display: table-footer-group;
+    font-weight: bold;
+    background-color: #ddd;
+}
+.blog-table-body {
+    display: table-row-group;
+}