diff options
| author | Sam Wilkins <35748010+samwilkins333@users.noreply.github.com> | 2019-06-26 12:51:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-26 12:51:18 -0400 |
| commit | deb85766ac5648cc8e3ab4bf9d182ac5bbbbe144 (patch) | |
| tree | 2d89512eab9c7ba4a976229a87e33675616ebe57 /src/client/views/presentationview/PresentationView.scss | |
| parent | 219cabb3fe42ab199550efc3423b7aaed4e1ee93 (diff) | |
| parent | 5e477755b392128ab8b39c082f16dd67708be0d2 (diff) | |
Merge pull request #170 from browngraphicslab/presentation-selection-mohammad
Presentation selection mohammad
Diffstat (limited to 'src/client/views/presentationview/PresentationView.scss')
| -rw-r--r-- | src/client/views/presentationview/PresentationView.scss | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/src/client/views/presentationview/PresentationView.scss b/src/client/views/presentationview/PresentationView.scss new file mode 100644 index 000000000..a35a5849b --- /dev/null +++ b/src/client/views/presentationview/PresentationView.scss @@ -0,0 +1,89 @@ +.presentationView-cont { + position: absolute; + background: white; + z-index: 1; + box-shadow: #AAAAAA .2vw .2vw .4vw; + right: 0; + top: 0; + bottom: 0; +} + +.presentationView-item { + padding: 10px; + display: inline-block; + width: 100%; + -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-listCont { + padding-left: 10px; + padding-right: 10px; +} + +.presentationView-item:hover { + transition: all .1s; + background: #AAAAAA +} + +.presentationView-selected { + background: gray; +} + +.presentationView-heading { + background: lightseagreen; + padding: 10px; + display: inline-block; + width: 100%; +} + +.presentationView-title { + padding-top: 3px; + padding-bottom: 3px; + font-size: 25px; + display: inline-block; + width: calc(100% - 160px); +} + +.presentation-icon { + float: right; +} + +.presentation-interaction { + float: left; +} + +.presentation-interaction-selected { + background: #505050; + float: left; +} + +.presentationView-name { + font-size: 15px; + display: inline-block; +} + +.presentation-button { + margin-right: 2.5%; + margin-left: 2.5%; + width: 25%; +} + +.presentation-buttons { + padding: 10px; +} + +.presentation-next:hover { + transition: all .1s; + background: #AAAAAA +} + +.presentation-back:hover { + transition: all .1s; + background: #AAAAAA +}
\ No newline at end of file |
