You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
731 B
SCSS
28 lines
731 B
SCSS
@include phone {
|
|
$overlayWidth: $videoWidth;
|
|
$overlayHeadline: 16px;
|
|
$overlayHeadlineMargin: 14px;
|
|
$overlayPadding: 20px;
|
|
$overlayHeight: $videoHeight + $overlayHeadlineMargin + $overlayHeadline;
|
|
|
|
.overlay.scanner {
|
|
width: $overlayWidth;
|
|
height: $overlayHeight;
|
|
padding: $overlayPadding;
|
|
margin-top: -($overlayHeight)/2 - $overlayPadding;
|
|
margin-left: -($overlayWidth + 2*$overlayPadding)/2;
|
|
background-color: $overlayBackground;
|
|
@include box-shadow(none);
|
|
|
|
& > .header{
|
|
margin-bottom: $overlayHeadlineMargin;
|
|
h4, .close{
|
|
line-height: $overlayHeadline;
|
|
}
|
|
.close{
|
|
height: $overlayHeadline;
|
|
width: $overlayHeadline;
|
|
}
|
|
}
|
|
}
|
|
} |