aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/presentationview/PresentationView.scss
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-07-19 11:21:47 -0400
committerandrewdkim <adkim414@gmail.com>2019-07-19 11:21:47 -0400
commite453e7010def252b6cc10ad49d64708767c5589b (patch)
tree4353a4be5495acd61d813066d001e2b12da7d207 /src/client/views/presentationview/PresentationView.scss
parent9cad9abcf164c7d81b8debf4aa2639d83edd227b (diff)
parent8854d3277541a67aef4187b5d3592bea5a7fcfa2 (diff)
merge from master
Diffstat (limited to 'src/client/views/presentationview/PresentationView.scss')
-rw-r--r--src/client/views/presentationview/PresentationView.scss97
1 files changed, 97 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..2bb0ec8c8
--- /dev/null
+++ b/src/client/views/presentationview/PresentationView.scss
@@ -0,0 +1,97 @@
+.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-item-above {
+ border-top: black 2px solid;
+}
+
+.presentationView-item-below {
+ border-bottom: black 2px solid;
+}
+
+.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