summaryrefslogtreecommitdiff
path: root/public/assets/stylesheets/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/stylesheets/app.css')
-rwxr-xr-xpublic/assets/stylesheets/app.css149
1 files changed, 132 insertions, 17 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css
index 77b1d04..61a4fa9 100755
--- a/public/assets/stylesheets/app.css
+++ b/public/assets/stylesheets/app.css
@@ -58,6 +58,17 @@ a{
}
+.floatingSwatch {
+ width: 50px;
+ height: 50px;
+ position:absolute;
+ border: 2px solid black;
+ box-shadow: -2px 2px #fff;
+ display: none;
+ z-index: 10;
+ pointer-events: none;
+}
+
.ants {
max-width:320px;
height: auto;
@@ -158,10 +169,21 @@ h5 {
.page table.showcase {
height:70vh;
}
-.page table td.border{
- border-right:1px solid;
+.page table td.border {
+ position: relative;
+ border-right: 1px solid;
+}
+iframe.embed {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ border: 0;
+ z-index: -1;
+ pointer-events: none;
}
-.page table td{
+.page table td {
width: 33.3333%;
background-size: cover;
background-repeat: no-repeat;
@@ -169,7 +191,7 @@ h5 {
border-bottom:1px solid black;
}
-.page table.showcase td{
+.page table.showcase td {
height: 70vh;
background-size: cover;
}
@@ -208,6 +230,7 @@ h5 {
color:white;
}
+/*
.room1 {
position: relative;
overflow: hidden;
@@ -261,6 +284,7 @@ h5 {
-webkit-transform:translateY(0);
transform:translateY(0);
}
+*/
.page .questions {
background: #55efcb;
@@ -445,6 +469,9 @@ h5 {
.templates {
}
+.no-templates {
+ display: none;
+}
.templates span{
background-position: center;
@@ -511,19 +538,27 @@ h5 {
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
}
-.mx-object3d.image, .mx-object3d canvas,
+.mx-object3d.image,
+.mx-object3d.video,
+.mx-object3d canvas,
.mx-object3d.backface-hidden {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
-.mx-object3d.backface-visible, .mx-object3d.backface-visible canvas{
+.mx-object3d.backface-visible,
+.mx-object3d.backface-visible canvas{
-webkit-backface-visibility: visible;
-moz-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
}
+.mx-object3d iframe,
+.mx-object3d video {
+ pointer-events: none;
+}
+
#hud {
position: fixed;
top:0;left:0;
@@ -721,8 +756,10 @@ h5 {
-webkit-transform:translateY(0%);
transform:translateY(0%);
}
+.mediaDrawer.table, .mediaDrawer.error,
.mediaDrawer.signin, .mediaDrawer.signup,
-.mediaDrawer.alert, .mediaDrawer.confirm, .mediaDrawer.error,
+.mediaDrawer.alert, .mediaDrawer.confirm,
+.mediaDrawer.passwordForgot, .mediaDrawer.passwordReset, .mediaDrawer.usernameTaken,
.mediaDrawer.layouts, .mediaDrawer.projects, .mediaDrawer.newProject {
display:table;
}
@@ -968,7 +1005,7 @@ h5 {
border:1px dashed black;
cursor:pointer;
}
-.mediaContainer img{
+.mediaContainer img, .mediaContainer video {
max-width:100%;
}
@@ -1083,7 +1120,7 @@ input[type=range] {
-webkit-appearance: none;
-moz-appearance: none;
background-color: black;
- width: 200px;
+ width: 180px;
height:3px;
}
@@ -1096,6 +1133,11 @@ input[type="range"]::-webkit-slider-thumb {
cursor:pointer;
}
+.settings.info {
+ right: auto;
+ left: 10px;
+}
+
.settings {
padding: 20px;
bottom: 20px;
@@ -1153,13 +1195,15 @@ input[type="range"]::-webkit-slider-thumb {
#startpoint.active:hover {
text-decoration:none;
}
-.settings input[type="text"], textarea{
+.settings input[type="text"] {
border: 1px solid #000;
font-size: 15px;
padding: 5px;
}
.settings textarea {
+ border: 1px solid #000;
+ padding: 5px;
font-size: 12px;
width: 100%;
max-height: 200px;
@@ -1170,7 +1214,7 @@ input[type="range"]::-webkit-slider-thumb {
border: 1px solid #000;
}
-.settings .setting{
+.settings .setting {
margin-bottom:10px;
}
.setting.subButtons {
@@ -1187,6 +1231,77 @@ input[type="range"]::-webkit-slider-thumb {
.settings .setting:last-child{
margin-bottom:0px;
}
+.settings input[type="text"].number {
+ width: 60px;
+}
+
+.setting label {
+ font-size: 12px;
+ font-weight: 300;
+ padding-right: 5px;
+}
+.setting.number label {
+ width: 50px;
+ display: inline-block;
+ float: left;
+ position: relative;
+ top: 5px;
+}
+.setting.number.halflines {
+ height: 30px;
+}
+.setting.number.halflines input[type=text] {
+ float: left;
+ width: 60px;
+}
+.setting.number.halflines label:nth-of-type(2) {
+ text-align: center;
+ width: 30px;
+}
+
+.setting.number input[type=text] {
+ width: 150px;
+}
+.setting.number.twoline label {
+ top: 0px;
+}
+
+.playButton,.muteButton {
+ color: white;
+ background: black;
+ border-radius: 50px;
+ font-size: 22px;
+ padding: 4px 2px 3px 6px;
+ cursor: pointer;
+ margin-right: 5px;
+}
+.playButton .on {
+ display: inline;
+}
+.playButton.paused .on {
+ display: none;
+}
+.playButton .off {
+ display: none;
+}
+.playButton.paused .off {
+ display: inline;
+}
+
+.muteButton .on {
+ display: inline;
+ padding-right: 3px;
+}
+.muteButton.muted .on {
+ display: none;
+}
+.muteButton .off {
+ display: none;
+}
+.muteButton.muted .off {
+ display: inline;
+ padding-right: 3px;
+}
button {
padding: 8px;
@@ -1266,7 +1381,6 @@ button:hover {
form {
max-width: 440px;
margin: 0 auto;
-
}
form div {
float:right;
@@ -1350,23 +1464,23 @@ form li textarea {
margin-top: 20px;
}
-.video {
+.demo .video {
height:80vh;
min-height:300px;
}
-.video span {
+.demo .video span {
font-size:100px;
color:white;
cursor:pointer;
}
-.video span.videoTitle {
+.demo .video span.videoTitle {
font-size: 29px;
font-weight: 300;
padding: 3px 7px;
}
-.video span.icon-ios7-play-outline:hover {
+.demo .video span.icon-ios7-play-outline:hover {
color:lightgreen;
}
@@ -1406,7 +1520,7 @@ form li textarea {
background:lightgreen;
}
*/
-.box b.info {
+.box b.signin-tagline {
display: inline-block;
width: 100%;
margin-bottom: 18px;
@@ -1456,6 +1570,7 @@ form li textarea {
bottom: 10px;
padding-right:10px;
background:rgba(255,255,255,0.95);
+ z-index: 2;
}
.share h2 {