123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- .pinBottom-container {
- position: absolute;
- bottom: 0px;
- width: 100%;
- transition: all 0.5s;
- z-index: var(--z-index-top);
- .pinBottom.playing {
- bottom: 20px;
- }
- }
- #gui .pinBottom.open.noScroll.playing {
- bottom: 135px;
- }
- .pinBottom {
- position: absolute;
- bottom: 0;
- line-height: 1;
- transition: all 0.5s;
- &.left {
- background: rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- left: 10px;
- bottom: 10px;
- }
- &.right {
- right: 0;
- bottom: 10px;
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
- .rightViewContainer > div:hover {
- background: rgba(0, 0, 0, 0.25);
- }
- .ui-icon {
- float: left;
- padding: 0;
- margin-right: 10px;
- background: rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- }
- }
- &.open {
- bottom: 140px;
- &.noScroll {
- bottom: 117px;
- &.playing {
- bottom: 135px;
- }
- }
- &.playing {
- bottom: 150px;
- }
- }
- }
- .viewContainer {
- float: left;
- position: relative;
- > div {
- float: left;
- }
- }
- #play,
- #pause {
- position: relative;
- width: 94px;
- height: 48px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- &:hover {
- background: rgba(0, 0, 0, 0.25);
- }
- }
- #gui-modes-map > div {
- float: left;
- width: 94px;
- height: 48px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- &:hover,
- &.active,
- &.opened {
- background: rgba(0, 0, 0, 0.25);
- }
- img {
- width: 24px;
- height: 24px;
- }
- }
- #pullTab {
- display: block;
- position: relative;
- border-top-left-radius: 2px;
- border-top-right-radius: 2px;
- text-align: center;
- }
- #volume > a,
- #gui-fullscreen > a {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 48px;
- height: 48px;
- }
- .terms2 {
- display: none;
- }
- .icon-fullscreen:before {
- content: '';
- background: url('/public/images/enlarge_on.png') center top no-repeat;
- background-size: 100%;
- display: inline-block;
- width: 24px;
- height: 24px;
- }
- @media only screen and (max-width: 600px) {
- .pinBottom.right,
- .pinBottom.left {
- bottom: 5px;
- }
- .pinBottom.left {
- left: 5px;
- }
- .pinBottom.right .ui-icon {
- margin-right: 5px;
- }
- #play,
- #pause {
- width: 64px;
- }
- #gui-modes-map > div {
- width: 64px;
- }
- .viewContainer,
- #gui-modes-map {
- display: flex;
- flex-direction: column;
- }
- }
- @media only screen and (max-width: 487px), (max-height: 487px) {
- .pinBottom-container.drawerOpen.duringTour {
- bottom: 6px;
- }
- #gui .pinBottom.open.noScroll {
- bottom: 93px;
- }
- .pinBottom.open.noScroll.playing {
- bottom: 108px;
- }
- }
|