diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-19 22:12:12 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-19 22:12:12 -0400 |
commit | a04ecbde778decfdea7200806a6b1144861ae05f (patch) | |
tree | e4670e3013734d9c7bd201f5d6ef1fbaae13d3b5 /assets | |
parent | 5aacb6a76351889a6ec5ed01c8e80f139c2b2027 (diff) |
Add RememberMe feature and authentications history
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/app.css | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/assets/css/app.css b/assets/css/app.css index 040c77df..f3a44c92 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -65,6 +65,7 @@ table { width: 100%; border-collapse: collapse; border-spacing: 0; + margin-bottom: 20px; } table caption { @@ -80,7 +81,8 @@ td { border: 1px solid #ccc; padding-top: 0.5em; padding-bottom: 0.5em; - padding-left: 5px; + padding-left: 3px; + padding-right: 3px; } th { @@ -89,13 +91,23 @@ th { } tr:nth-child(odd) td { - background: #fcfcfc; + background: #f8f8f8; } td li { margin-left: 20px; } +.table-small { + font-size: 0.85em; +} + +.table-hover tr:hover td { + border-top: 2px solid #333; + border-bottom: 2px solid #333; + background: rgb(219, 235, 255) +} + /* forms */ form { padding-top: 5px; |