diff options
Diffstat (limited to 'src/client/views/PresentationView.scss')
-rw-r--r-- | src/client/views/PresentationView.scss | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/client/views/PresentationView.scss b/src/client/views/PresentationView.scss new file mode 100644 index 000000000..595cdb879 --- /dev/null +++ b/src/client/views/PresentationView.scss @@ -0,0 +1,41 @@ +.presentationView-cont { + position: absolute; + background: white; + z-index: 1; + box-shadow: #AAAAAA .2vw .2vw .4vw; + right: 0; + top:0; + bottom:0; +} + +.presentationView-item { + width: 10vw; + height: 40px; + vertical-align: center; + padding-top: 15px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: all .1s; +} + +.presentationView-item:hover { + transition: all .1s; + background: #AAAAAA +} + +.presentationView-title { + margin-top: 0px; + padding-top: 3px; + padding-bottom: 3px; + height: 50px; + text-align: center; + background: lightseagreen; +} + +.icon{ + margin-right: 0px; +}
\ No newline at end of file |