diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-01-20 01:33:37 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-01-20 01:33:37 +0100 |
| commit | 39780c6c2d5474e2af12661935f986265c0feb0d (patch) | |
| tree | 12998b2bd8a34a9ff83467ac76f755b072179d21 /StoneIsland/platforms/android/assets/www/css/nav.css | |
| parent | fcdef34b27e8f8e674361cbae17e627b9135d9c7 (diff) | |
| parent | 75aacfbbf0aaea5f09809428bdebe6842d36f082 (diff) | |
home screen degrees in N S E W..
Diffstat (limited to 'StoneIsland/platforms/android/assets/www/css/nav.css')
| -rwxr-xr-x | StoneIsland/platforms/android/assets/www/css/nav.css | 46 |
1 files changed, 38 insertions, 8 deletions
diff --git a/StoneIsland/platforms/android/assets/www/css/nav.css b/StoneIsland/platforms/android/assets/www/css/nav.css index c769dabd..05e4aedc 100755 --- a/StoneIsland/platforms/android/assets/www/css/nav.css +++ b/StoneIsland/platforms/android/assets/www/css/nav.css @@ -81,7 +81,7 @@ font-size: 14px; letter-spacing:1.25px; color: #bbb; - padding: 4px 0 7px 20px + padding: 4px 0 12px 20px } #nav .social { @@ -321,20 +321,46 @@ padding-bottom:0px; #selector { display: none; position: absolute; - bottom: 0; left: 0; background: #fff; z-index: 2; - width:100%; - box-sizing:border-box + box-sizing:border-box; + min-width:100px; + animation: selector-spring .15s forwards; + animation-timing-function: cubic-bezier(.43,1,.89,.95) } + +@keyframes selector-spring { + 0% { + margin-top: 15px + } + 100% { + margin-top: 0 + } +} + #selector .options div { - width: 100%; background: white; text-align: center; - padding: 8px; - + padding: 7px 12px; box-sizing:border-box; font-size: 14px; + border-left:1px solid black; + border-right:1px solid black; + border-top:1px solid black; + +} + +#selector .options div:last-of-type { + border-bottom:1px solid black +} + +.selector-full { + width: 100% !important; + box-sizing:border-box +} + +.selector-full > div > div { + padding: 12px 0 !important; } /* CONTENT */ @@ -369,6 +395,10 @@ h1 { } .msg { - padding: 20px; + margin: 20px; display: inline-block; } + +.msg-condensed { + margin:6px!important; +} |
