<img style="width: 80px; height: 100%;" src="images/logo.png">
Use proper language + region codes for translation files (en.wikipedia.org/wiki/IETF_language_tag) / POSIX
var elem = document.getElementById("myvideo");
if (elem.requestFullscreen) {
// elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) {
// elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) {
// elem.webkitRequestFullscreen();
}
function toggleFullScreen() {
if (!document.fullscreenElement && // alternative standard method
!document.mozFullScreenElement && !document.webkitFullscreenElement) { // current working methods
if (document.documentElement.requestFullscreen) {
document.documentElement.requestFullscreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullscreen) {
document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
preg_match('~(\{.*?\};)~m', $get, $json);
$pdf = \App::make('dompdf.wrapper');
$pdf->loadView('pdf.offer', [ 'offer' => $offer ]);
header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename=".str_slug($offer->title . '_' . $offer->id).'.pdf');
return $pdf->download(str_slug($offer->title . '_' . $offer->id).'.pdf');
.parent:hover .img {
/* тут новый класс для фото */
}
.parent:hover .niz-block {
/* тут новый класс для нижнего блока */
}
/** Medium devices (tablets, 544 and up sm) **/
@media (min-width: 544px) {
}
/** Medium devices (tablets, 768 and up sm) **/
@media (min-width: 768px) {
}
/** Large devices (desktops, 992px and up lg) **/
@media (min-width: 992px) {
}
/** Extra large devices (large desktops, 1200px and up xl) **/
@media (min-width: 1200px) {
}
/** **************** ****************** **************** **/
/** Large devices (desktops, less than 1200px) **/
@media (max-width: 1199px) {
}
/** Medium devices (tablets, less than 992px) **/
@media (max-width: 991px) {
}
/** Small devices (landscape phones, less than 768px) **/
@media (max-width: 767px) {
}
/** Extra small devices (portrait phones, less than 544px ) **/
@media (max-width: 543px) {
}
/** ****************** ****************** ****************** **/
/** Medium devices (tablets, 544 and up) **/
@media (min-width: 544px) and (max-width: 767px) {
}
/** Medium devices (tablets, 768px and up) **/
@media (min-width: 768px) and (max-width: 991px) {
}
/** Large devices (desktops, 992px and up) **/
@media (min-width: 992px) and (max-width: 1199px) {
}