diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-06 15:16:40 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-03-06 15:16:40 +1300 |
commit | 51d13af58bd939af696c5658d09f305582779440 (patch) | |
tree | e2e9b12f4aab2b1333b19b12fa465f88f9561ef8 /petrichor.css | |
parent | 2f4e27402be28e4404bfe8ef782c7911ae5dcc93 (diff) | |
download | petrichor-51d13af58bd939af696c5658d09f305582779440.tar.xz |
Add basic session detection and selection
Diffstat (limited to 'petrichor.css')
-rw-r--r-- | petrichor.css | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/petrichor.css b/petrichor.css index f7f10fa..8ad5d38 100644 --- a/petrichor.css +++ b/petrichor.css @@ -15,12 +15,12 @@ body,html #shutdown { - cursor: pointer; - opacity: 0.5; - width: 96px; position: absolute; right: 50px; bottom: 50px; + cursor: pointer; + opacity: 0.5; + width: 96px; transition: opacity ease 0.3s; } @@ -85,7 +85,7 @@ a.user { color: #333; opacity: inherit; - background-color: rgba(255,255,255,255,0.2); + background-color: #FFF; padding: 0.2em; border: 1px solid #DDD; border-radius: 5px; @@ -134,3 +134,18 @@ a.user margin-right: 30px; font-size: 240px; } + +#session_list +{ + position: absolute; + top: 50px; + left: 50px; + border: 1px solid #DDD; + border-radius: 5px; + padding: 0.2em; + color: #333; + padding-right: 2em; + background: url('drop-down.svg') no-repeat right #FFF; + -webkit-appearance: none; + -moz-appearance: none; /* only for when testing */ +} |