if( in_array($request[2],array('left','right','full'))) { | if( in_array($request[2],array('left','right','full'))) { | ||||
$class = $request[2]; | $class = $request[2]; | ||||
} else { | } else { | ||||
$class = 'left'; | |||||
$class = 'full'; | |||||
} | } | ||||
$img = new \Image($image); | $img = new \Image($image); | ||||
$ratio = ($img->width() >= $img->height()) | $ratio = ($img->width() >= $img->height()) |
grid-template-columns:50% 50%; | grid-template-columns:50% 50%; | ||||
} | } | ||||
// lightbox ----------------------- | |||||
// page | |||||
.content_element_page { | |||||
&:after { | |||||
content: ""; | |||||
display: block; | |||||
clear: both; | |||||
} | |||||
} | |||||
// image | |||||
.content_element_image { | |||||
width: 60%; | |||||
&.left { | |||||
float: left; | |||||
} | |||||
&.right { | |||||
float: right; | |||||
} | |||||
&.full { | |||||
width:100%; | |||||
} | |||||
img { | |||||
width: 100%; | |||||
} | |||||
} | |||||
// lightbox ----------------------- | |||||
.featherlight .featherlight-content { | .featherlight .featherlight-content { | ||||
background: none; | background: none; | ||||
overflow: visible; | overflow: visible; |