diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-09-30 17:12:28 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-09-30 17:12:28 -0400 |
| commit | 65d9b92bcadbecb6e7dd55930f96f228c6a2f4f7 (patch) | |
| tree | 75f1e94c0238fd21407206a1fdbe9cb94bd17cce /src/client/views/nodes/PresBox.scss | |
| parent | 2b0840202933ac554a9dc79304203ada38551c0f (diff) | |
simpliified presentations to be a PresBox with PresElementBoxes.
Diffstat (limited to 'src/client/views/nodes/PresBox.scss')
| -rw-r--r-- | src/client/views/nodes/PresBox.scss | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/client/views/nodes/PresBox.scss b/src/client/views/nodes/PresBox.scss new file mode 100644 index 000000000..2aadd77aa --- /dev/null +++ b/src/client/views/nodes/PresBox.scss @@ -0,0 +1,33 @@ +.presBox-cont { + position: absolute; + z-index: 2; + box-shadow: #AAAAAA .2vw .2vw .4vw; + right: 0; + top: 0; + bottom: 0; + width: 100%; + min-width: 200px; + height: 100%; + min-height: 50px; + letter-spacing: 2px; + overflow: hidden; + transition: 0.7s opacity ease; + pointer-events: all; + + .presBox-listCont { + padding-left: 10px; + padding-right: 10px; + } + + .presBox-buttons { + padding: 10px; + width: 100%; + .presBox-button { + margin-right: 2.5%; + margin-left: 2.5%; + width: 20%; + border-radius: 5px; + } + } +} + |
