aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PresentationView.scss
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-05-17 21:52:49 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-05-17 21:52:49 -0400
commit618b4a42795b59cde47510b86b6e25dc03e15935 (patch)
treef10a9f093df478db15e94fbf8992a32fe8ba99d0 /src/client/views/PresentationView.scss
parent19fca408a19c5f7a759ff6c3bfefe27b96ec3563 (diff)
parent4e244951b7b18d7973360f423e8de80c42466228 (diff)
merged
Diffstat (limited to 'src/client/views/PresentationView.scss')
-rw-r--r--src/client/views/PresentationView.scss79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/client/views/PresentationView.scss b/src/client/views/PresentationView.scss
new file mode 100644
index 000000000..fb4a851c4
--- /dev/null
+++ b/src/client/views/PresentationView.scss
@@ -0,0 +1,79 @@
+.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;
+}
+
+.presentation-icon {
+ float: right;
+}
+
+.presentationView-name {
+ font-size: 15px;
+ display: inline-block;
+}
+
+.presentation-button {
+ margin-right: 12.5%;
+ margin-left: 12.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