- Aussehen der VR-Schnittstelle verändert

- Schriftart-Quelle hinzugefügt
This commit is contained in:
Denys Konovalov
2020-11-18 20:48:45 +01:00
parent 64d869fdb6
commit 6bdb1eb243
36 changed files with 997 additions and 33 deletions

View File

@ -22,7 +22,7 @@ html, body {
padding: 0;
margin: 0;
overflow: hidden;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Fira Sans", Arial, sans-serif;
font-size: 16px;
background-color: #000;
color: #fff;
@ -49,6 +49,10 @@ a, a:hover, a:active, a:visited {
right: 40px;
height: 40px;
text-align: center;
border-radius: 12px;
margin: 10px;
margin-left: 20px;
margin-right: 30px;
}
.mobile #titleBar {
@ -77,10 +81,11 @@ body.multiple-scenes.mobile #titleBar {
#titleBar .sceneName {
width: 100%;
height: 100%;
line-height: 30px;
line-height: 27.5px;
padding: 5px;
background-color: #1a1a37;
background-color: #1a1a37;
font-family: "Fira Sans Heavy", sans-serif;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@ -89,6 +94,7 @@ body.multiple-scenes.mobile #titleBar {
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
border-radius: 30px;
}
.mobile #titleBar .sceneName {
@ -104,6 +110,8 @@ body.multiple-scenes.mobile #titleBar {
height: 40px;
padding: 5px;
background-color: #ffbc3b;
border-radius: 50%;
margin: 10px;
}
.mobile #fullscreenToggle {
@ -153,6 +161,9 @@ body.fullscreen-enabled #fullscreenToggle {
height: 40px;
padding: 5px;
background-color: #ffbc3b;
border-radius: 20px;
margin: 10px;
margin-right: 20px;
}
.mobile #autorotateToggle {
@ -206,6 +217,8 @@ body.fullscreen-enabled.mobile #autorotateToggle {
height: 40px;
padding: 5px;
background-color: #ffbc3b;
border-radius: 50%;
margin: 10px;
}
.mobile #sceneListToggle {
@ -252,7 +265,6 @@ body.fullscreen-enabled.mobile #autorotateToggle {
#sceneList {
position: absolute;
top: 0;
left: -220px;
padding-top: 40px;
width: 220px;
@ -262,6 +274,7 @@ body.fullscreen-enabled.mobile #autorotateToggle {
margin-left: 0;
-webkit-transition: margin-left 0.5s ease-in-out;
transition: margin-left 0.5s ease-in-out;
margin: 20px;
}
.mobile #sceneList {
@ -288,7 +301,7 @@ body.fullscreen-enabled.mobile #autorotateToggle {
}
#sceneList.enabled {
margin-left: 220px;
margin-left: 230px;
}
#sceneList .scene {
@ -311,18 +324,28 @@ body.fullscreen-enabled.mobile #autorotateToggle {
white-space: nowrap;
}
#sceneList .scene .text:hover {
color: #1a1a37;
}
.mobile #sceneList .scene .text {
line-height: 40px;
}
.no-touch #sceneList .scene:hover {
background-color: rgb(103,115,131);
background-color: rgba(103,115,131,0.8);
background-color: #fff;
}
#sceneList .scene.current {
background-color: rgb(103,115,131);
background-color: #ffbc3b;
}
#sceneList .scene.current .text {
font-family: "Fira Sans Heavy", sans-serif;
}
/* Hide scene list when only a single scene exists */
@ -464,7 +487,7 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
}
.desktop.no-touch .info-hotspot .info-hotspot-header:hover {
width: 460px;
width: 560px;
border-radius: 5px;
-webkit-transition: width 0.3s ease-in-out,
border-radius 0.3s ease-in-out;
@ -474,7 +497,7 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
width: 460px;
width: 560px;
border-radius: 5px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
@ -517,7 +540,7 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch .info-hotspot .info-hotspot-header:hover .info-hotspot-title-wrapper {
width: 420px;
width: 520px;
padding: 0 5px;
-webkit-transition: width 0s 0.4s,
padding 0s 0.4s;
@ -544,7 +567,7 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
.info-hotspot .info-hotspot-close-wrapper {
position: absolute;
left: 460px;
left: 560px;
top: 0;
height: 40px;
width: 40px;
@ -590,7 +613,7 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
.info-hotspot .info-hotspot-text {
position: absolute;
width: 400px;
width: 560px;
height: auto;
max-height: 200px;
top: 40px;
@ -783,7 +806,10 @@ body.single-scene #sceneList, body.single-scene #sceneListToggle {
height: 40px;
padding: 5px;
background-color: rgb(103,115,131);
background-color: #ffbc3b;
background-color: #fff;
border-radius: 50%;
margin-bottom: 10px;
}
body.view-control-buttons .viewControlButton {