diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-07 02:39:33 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-07 02:39:33 -0800 |
commit | ecb87bd22022a140df7e0d1843494ff065d55c1c (patch) | |
tree | c36960ca93f0c839497eb6cf138da35bc96c5541 /css | |
parent | 03f3979e61cadcc0cad90352a7ae1e5b91e5136f (diff) | |
parent | d4fce99f8149f352f5bba9deced0c98198d5c4d9 (diff) | |
download | pathery-ecb87bd22022a140df7e0d1843494ff065d55c1c.tar.xz |
Merge branch 'HEAD' of ssh://git@git.raylu.net/pathery
Diffstat (limited to 'css')
-rw-r--r-- | css/page.css | 9 | ||||
-rw-r--r-- | css/stats.css | 27 |
2 files changed, 33 insertions, 3 deletions
diff --git a/css/page.css b/css/page.css index 46563d2..ec0f1c9 100644 --- a/css/page.css +++ b/css/page.css @@ -507,5 +507,14 @@ table.score th { background-color:#356;
cursor:default;
}
+.unselectable
+{
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
diff --git a/css/stats.css b/css/stats.css index 3028d91..282f58a 100644 --- a/css/stats.css +++ b/css/stats.css @@ -1,3 +1,9 @@ +#displayDate +{ + font-size: 105%; + text-align: center; + padding: 7px 0px; +} .col1 { float: left; margin-right: 8px; @@ -57,7 +63,7 @@ cursor: auto; } .mapNavActive { - cursor: auto; + cursor: pointer; } .mapNavActive:hover { background-color: #343c57; @@ -115,10 +121,25 @@ } .mapThumbnail.current { - background-color:#557; + background-color: #373737; + color: #CCCCCC; } .mapThumbnail.current:hover { - background-color:#668; + background-color:#474747; +} +#currentMapMessage +{ + color: #FF2818; + display: none; + text-align: center; + padding-bottom: 12px; +} + +#currentMapMessage span +{ + background-color: #1A1A1A; + border-radius: 8px 8px 8px 8px; + padding: 3px 10px; } |