diff options
author | raylu <raylu@mixpanel.com> | 2011-11-05 03:04:49 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-11-05 03:04:49 -0700 |
commit | cf4af138b16da878404cf3319d5d988dacee198a (patch) | |
tree | 41187e9c8206657f9f5138de70c5e5a6f447a251 /css/stats.css | |
parent | 264ed976da6b3012209386a76520327faeddf82e (diff) | |
download | pathery-cf4af138b16da878404cf3319d5d988dacee198a.tar.xz |
new layout
Diffstat (limited to 'css/stats.css')
-rw-r--r-- | css/stats.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/css/stats.css b/css/stats.css new file mode 100644 index 0000000..c36c1d0 --- /dev/null +++ b/css/stats.css @@ -0,0 +1,32 @@ +.col1 { + float: left; + margin-right: 30px; +} +.col2 { + float: left; + width: 450px; +} +table { + border-collapse: collapse; +} +td, th { + padding: 3px; +} +.lbrow { + background: #000; + transition:background .5s; + -webkit-transition:background .5s; + -o-transition:color .5s; + -moz-transition:color .5s; + cursor: default; +} +.lbrow:hover { + background: #356; + transition:background 0s; + -webkit-transition:background 0s; + -o-transition:color 0s; + -moz-transition:color 0s; +} +.hidden-stats { + display: none; +} |