diff options
Diffstat (limited to 'public/main.css')
-rw-r--r-- | public/main.css | 15 |
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 { |