| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- html, body {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- overflow: hidden;
- font-family: "Segoe WP", "Segoe UI", "Verdana", "Arial";
- }
- a {
- color: white;
- }
- a:visited {
- color: white;
- }
- .hidden {
- display: none;
- }
- #notSupported {
- text-align: center;
- color: white;
- opacity: 0.8;
- background-color: #0077DB;
- font-size: 40px;
- padding-top: 20%;
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 1000;
- cursor: default;
- }
- #renderCanvas {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- margin-bottom: 70px;
- touch-action: none;
- -ms-touch-action: none;
- }
- .help {
- position: absolute;
- background-color: #0077DB;
- right: 0;
- bottom: 70px;
- color: white;
- padding-right: 10px;
- width: 360px;
- height: 50px;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- transform: translateX(400px);
- -webkit-transform: translateX(400px);
- }
- .help.shown {
- transform: translateX(0px);
- -webkit-transform: translateX(0px);
- }
- .helpText {
- cursor: default;
- position: absolute;
- margin: 10px;
- bottom: 5px;
- }
- .helpArrow {
- position: absolute;
- margin: 5px;
- margin-right: 10px;
- right: 0px;
- }
- #sliders {
- position: absolute;
- top: 25%;
- right: 10px;
- height: 50%;
- width: 150px;
- text-align: center;
- }
- .slider {
- height: 20%;
- margin-bottom: 5px;
- margin-left: 70px;
- }
- .sliderText {
- color: white;
- font-size: 20px;
- cursor: default;
- }
- #fps {
- position: absolute;
- right: 20px;
- top: 20px;
- font-size: 20px;
- color: white;
- text-shadow: 2px 2px 0 black;
- }
- #babylonLogo {
- position: absolute;
- left: 20px;
- top: 20px;
- }
- #footer {
- position: absolute;
- width: 100%;
- height: 50px;
- bottom: 0;
- background-color: #0077DB;
- padding-top: 5px;
- padding-left: 15px;
- }
- #footerRight {
- position: absolute;
- bottom: 0;
- right: 10px;
- }
- #footerLeft {
- position: absolute;
- bottom: 5px;
- left: 15px;
- color: white;
- }
- #logo {
- position: absolute;
- width: 194px;
- bottom: 0;
- left: 50%;
- margin-left: -97px;
- }
- .sepButton {
- width: 24px;
- height: 40px;
- margin-right: 20px;
- }
- .controlButton {
- border-radius: 25px;
- border: 2px solid white;
- width: 40px;
- height: 40px;
- margin-right: 20px;
- }
- .controlButton.selected {
- background-color: orange;
- }
- .controlButton:hover {
- transform: scale(0.95);
- -webkit-transform: scale(0.95);
- }
- .controlButton:active {
- transform: scale(0.9);
- -webkit-transform: scale(0.9);
- background-color: orange;
- }
|