diff options
| author | madelinegr <mgriswold99@gmail.com> | 2019-02-26 18:18:36 -0500 |
|---|---|---|
| committer | madelinegr <mgriswold99@gmail.com> | 2019-02-26 18:18:36 -0500 |
| commit | fccb746640f9c832a660eb328d3196c8e50d5794 (patch) | |
| tree | 49ad3e3e079ae31a700293ea71c147d415ae7f49 /src/client/views/PresentationView.scss | |
| parent | 4fbb88e1019f1813a3bf0ed9d92e5c57eb435cdc (diff) | |
css mostly
Diffstat (limited to 'src/client/views/PresentationView.scss')
| -rw-r--r-- | src/client/views/PresentationView.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/views/PresentationView.scss b/src/client/views/PresentationView.scss new file mode 100644 index 000000000..c635f51ea --- /dev/null +++ b/src/client/views/PresentationView.scss @@ -0,0 +1,29 @@ +.presentationView-cont { + position: absolute; + background: blue; + z-index: 1; + box-shadow: #AAAAAA .2vw .2vw .4vw; + right: 0; + top:0; + bottom:0; +} + +.presentationView-item { + width: 10vw; + height: 6vh; + background: #DDDDDD; + flex-direction: column; + + -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 +}
\ No newline at end of file |
