aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorJoris2017-04-21 17:31:50 +0200
committerJoris2017-04-21 17:31:50 +0200
commitd359e1d6203728783c97ed1313e62088dd44f386 (patch)
tree1841f31f6c97cdf3ae453c803915083dab37460d /public
parentb7a00a27d50353f53bd5e74a0c67f1a238518cb7 (diff)
Sort table by clicking on the header
Diffstat (limited to 'public')
-rw-r--r--public/main.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/public/main.css b/public/main.css
index da0b04e..29f031c 100644
--- a/public/main.css
+++ b/public/main.css
@@ -33,10 +33,23 @@ body { margin: 0; }
}
.line.title {
+ height: 60px;
+}
+
+.line.title > * {
+ border: 0;
background-color: #333333;
color: white;
- font-size: 18px;
+ cursor: pointer;
height: 60px;
+ font-size: 17px;
+ padding: 0 15px;
+ text-align: left;
+ transition: background-color 0.2s ease-in-out;
+}
+
+.line.title > *.sorted {
+ background-color: #505050;
}
.line.search {