diff options
| author | Stanley Yip <stanley_yip@brown.edu> | 2019-10-12 17:02:31 -0400 |
|---|---|---|
| committer | Stanley Yip <stanley_yip@brown.edu> | 2019-10-12 17:02:31 -0400 |
| commit | d58195a0470b3882d6b43b18f1f4ab7a373a671f (patch) | |
| tree | 816d6ab0382b6d195f1ea3cc9cc36b15c5bc49dd /src/client/views/AntimodeMenu.scss | |
| parent | b29832a0b75e91f7d53e3820b12d517e6bf3ee94 (diff) | |
marquee now relies on pdf-style menu. pdf-style menu is now componentized so that other things can use it
Diffstat (limited to 'src/client/views/AntimodeMenu.scss')
| -rw-r--r-- | src/client/views/AntimodeMenu.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/views/AntimodeMenu.scss b/src/client/views/AntimodeMenu.scss new file mode 100644 index 000000000..f3da5f284 --- /dev/null +++ b/src/client/views/AntimodeMenu.scss @@ -0,0 +1,29 @@ +.antimodeMenu-cont { + position: absolute; + z-index: 10000; + height: 35px; + background: #323232; + box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25); + border-radius: 0px 6px 6px 6px; + overflow: hidden; + display: flex; + + .antimodeMenu-button { + background-color: transparent; + width: 35px; + height: 35px; + } + + .antimodeMenu-button:hover { + background-color: #121212; + } + + .antimodeMenu-dragger { + height: 100%; + transition: width .2s; + background-image: url("https://logodix.com/logo/1020374.png"); + background-size: 90% 100%; + background-repeat: no-repeat; + background-position: left center; + } +}
\ No newline at end of file |
