tweb/src/scss/partials/_ckin.scss

444 lines
7.7 KiB
SCSS
Raw Normal View History

.ckin {
&__player {
letter-spacing: 0.02em;
2020-08-26 21:25:43 +02:00
&.ckin__fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 100%;
width: 100%;
z-index: 10000000;
background: #000;
border-radius: 0 !important;
display: -ms-flexbox;
display: flex;
video {
width: 100%;
height: 100%;
/* max-height: none;
max-width: none; */
2020-08-26 21:25:43 +02:00
object-fit: contain;
}
}
}
&__overlay {
position: relative;
&:before {
background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}
&--2:before {
background: rgba(24, 24, 24, 0.8);
}
}
}
.default {
border: 0 solid rgba(0, 0, 0, 0.2);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
position: relative;
font-size: 0;
2020-06-16 22:48:08 +02:00
//overflow: hidden;
//border-radius: 5px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
&:before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
transition: opacity .2s;
opacity: 1;
visibility: visible;
}
&__title {
position: absolute;
left: 20px;
top: 20px;
z-index: 1;
font-size: 24px;
color: rgba(255, 255, 255, 0.8);
font-style: italic;
}
&__button {
background: none;
border: 0;
color: #fff;
outline: 0;
padding: 3px 10px 6px 10px;
cursor: pointer;
font-size: 24px;
line-height: 1;
display: flex;
align-items: center;
i {
align-self: center;
}
&--big {
background: none;
border: 0;
line-height: 1;
color: #fff;
text-align: center;
outline: 0;
padding: 0;
cursor: pointer;
position: absolute;
opacity: 1;
visibility: visible;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0) scale(1);
font-size: 64px;
transition: all .2s;
touch-action: manipulation;
}
}
&__slider {
width: 10px;
height: 30px;
}
&__controls {
position: absolute;
bottom: 0;
right: 0;
left: 0;
transition: all .3s;
text-align: left;
direction: ltr;
border-radius: 0 0 5px 5px;
2020-02-15 17:47:14 +01:00
z-index: 6;
2020-08-26 21:25:43 +02:00
.progress-line {
margin: 0 16px;
height: 5px;
background: rgba(255, 255, 255, 0.38);
border-radius: 4px;
overflow: visible;
&__filled {
background: #63a2e3;
transform-origin: left;
border-radius: 4px;
height: 5px;
transform: scaleX(0);
}
&__loaded {
background: rgba(255, 255, 255, 0.38);
left: 11px;
width: calc(100% - 11px);
}
}
}
2020-08-26 21:25:43 +02:00
&__gradient-bottom {
height: 49px;
// padding-top: 49px;
padding-top: 93px;
bottom: 0;
z-index: 2;
background-position: bottom;
width: 100%;
position: absolute;
background-repeat: repeat-x;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
transition: all .3s;
pointer-events: none;
}
2020-02-15 17:47:14 +01:00
2020-08-30 13:06:24 +02:00
.toggle:before {
content: $tgico-play;
}
2020-08-26 21:25:43 +02:00
&.is-playing {
.default__gradient-bottom {
transform: translate3d(0, 50px, 0);
2020-08-26 21:25:43 +02:00
}
2020-02-15 17:47:14 +01:00
html.no-touch &:hover,
&.show-controls {
2020-08-26 21:25:43 +02:00
.default__gradient-bottom {
transform: translateZ(0);
2020-08-26 21:25:43 +02:00
}
2020-02-15 17:47:14 +01:00
2020-08-26 21:25:43 +02:00
.default__controls {
transform: translateZ(0);
2020-08-26 21:25:43 +02:00
}
}
2020-08-26 21:25:43 +02:00
&:before {
opacity: 0;
visibility: hidden;
transform: translate3d(-50%, -50%, 0) scale(1.3);
2020-08-26 21:25:43 +02:00
}
2020-08-26 21:25:43 +02:00
.default__button--big {
opacity: 0;
visibility: hidden;
}
2020-08-26 21:25:43 +02:00
.default__controls {
transform: translate3d(0, 52px, 0);
2020-08-26 21:25:43 +02:00
}
2020-08-30 13:06:24 +02:00
.toggle {
&:before {
content: $tgico-pause;
}
}
2020-08-26 21:25:43 +02:00
}
2020-08-26 21:25:43 +02:00
.player-volume {
margin: -3px 2px 0 10px;
2020-08-26 21:25:43 +02:00
display: flex;
align-items: center;
@include respond-to(handhelds) {
2020-09-01 21:15:50 +02:00
//margin: -3px .75rem 0 2px;
margin: -3px 2px 0 2px;
}
2020-08-26 21:25:43 +02:00
&__icon {
fill: #fff;
width: 24px;
height: 24px;
margin-right: 8px;
cursor: pointer;
2020-09-01 21:15:50 +02:00
@include respond-to(handhelds) {
width: 20px;
height: 20px;
}
2020-04-25 03:17:50 +02:00
}
2020-06-16 22:48:08 +02:00
2020-08-26 21:25:43 +02:00
.progress-line {
margin: 0;
width: 50px;
2020-09-01 18:44:53 +02:00
// https://stackoverflow.com/a/4816050
html.is-ios & {
display: none;
}
2020-08-26 21:25:43 +02:00
&__filled {
background: #fff;
}
input[type=range]::-webkit-slider-thumb {
height: 15px;
width: 15px;
border-radius: 16px;
background: #fff;
}
2020-06-16 22:48:08 +02:00
}
2020-08-26 21:25:43 +02:00
2020-04-25 03:17:50 +02:00
}
2020-08-27 20:25:47 +02:00
&.is-buffering {
> .toggle {
display: none !important;
}
}
}
@media (max-width: 480px) {
.ckin__player button {
font-size: 18px;
}
}
video::-webkit-media-controls-enclosure {
display: none !important;
}
2020-08-26 21:25:43 +02:00
.progress-line {
2020-04-25 03:17:50 +02:00
position: relative;
cursor: pointer;
2020-04-25 03:17:50 +02:00
input[type=range] {
-webkit-appearance: none;
-moz-appearance: none;
background: transparent;
height: 4.5px;
cursor: pointer;
padding: 0;
outline: none;
2020-04-25 03:17:50 +02:00
&:focus {
outline: none;
2020-04-25 03:17:50 +02:00
&::-webkit-slider-runnable-track {
background: transparent;
}
2020-04-25 03:17:50 +02:00
&::-moz-range-track {
outline: none;
}
}
2020-04-25 03:17:50 +02:00
&::-webkit-slider-runnable-track {
width: 100%;
cursor: pointer;
border-radius: 1.3px;
-webkit-appearance: none;
transition: all 0.4s ease;
}
2020-04-25 03:17:50 +02:00
&::-webkit-slider-thumb {
height: 15px;
width: 15px;
border-radius: 16px;
background: #63a2e3;
cursor: pointer;
-webkit-appearance: none;
margin-left: -1px;
2020-06-21 14:25:17 +02:00
border: none;
2020-04-25 03:17:50 +02:00
}
2020-04-25 03:17:50 +02:00
&::-moz-range-track {
width: 100%;
height: 8.4px;
cursor: pointer;
border: 1px solid transparent;
background: transparent;
border-radius: 1.3px;
}
2020-04-25 03:17:50 +02:00
&::-moz-range-thumb {
height: 14px;
width: 14px;
border-radius: 50px;
border: 1px solid #63a2e3;
background: #63a2e3;
cursor: pointer;
margin-top: 5px;
}
}
2020-02-15 17:47:14 +01:00
2020-04-25 03:17:50 +02:00
&__seek {
position: absolute;
top: 0;
width: 100%;
cursor: pointer;
margin: 0;
}
&__loaded {
position: absolute;
left: 12px;
top: 0;
width: calc(100% - 12px);
}
2020-02-15 17:47:14 +01:00
}
2020-04-25 03:17:50 +02:00
input[type=range] {
&::-ms-track {
visibility: hidden;
}
2020-02-15 17:47:14 +01:00
2020-04-25 03:17:50 +02:00
&::-ms-ticks {
background: none;
color: none;
border: none;
}
2020-04-25 03:17:50 +02:00
&::-ms-thumb {
visibility: hidden;
}
2020-04-25 03:17:50 +02:00
&::-ms-tooltip {
visibility: hidden;
}
}
.left-controls {
display: flex;
align-items: center;
}
2020-02-15 17:47:14 +01:00
.right-controls {
float: right;
}
.bottom-controls {
padding: 3px 4px 0px 4px;
display: flex;
justify-content: space-between;
align-items: center;
}
.time {
float: right;
padding: 7px 0px 9px 14px;
font-size: 15px;
color: white;
2020-06-21 14:25:17 +02:00
@include respond-to(handhelds) {
padding: 7px 0px 9px 0px;
}
}
.circle .circle-time {
color: #fff;
font-size: 13px;
float: left;
//margin-top: 1px;
}
.circle .circle-time-left {
position: absolute;
top: 3px;
left: 2px;
border-radius: 12px;
background-color: rgba(0, 0, 0, 0.23);
padding: 1px 7px 2px 7px;
z-index: 2;
display: flex;
align-items: center;
}
video[data-ckin="circle"] {
2020-02-15 17:47:14 +01:00
border-radius: 50%;
overflow: hidden;
}
.progress-ring {
position: absolute;
top: 0;
left: 0;
cursor: pointer;
2020-04-25 03:17:50 +02:00
&__circle {
transition: stroke-dashoffset;
}
}
.ckin__player.circle {
position: relative;
width: 200px;
height: 200px;
}
.iconVolume {
padding: 0 1px 0 3px;
display: flex;
align-items: center;
font-size: 1.25rem;
color: #fff;
}