# meow-gallery/5.5.5/classes/builders/tiles-php.css.php

Meow Gallery, version 5.5.5. 27 lines.

- Page: https://pluginprobe.com/plugins/meow-gallery/5.5.5/code/classes/builders/tiles-php.css.php
- Raw: https://pluginprobe.com/plugins/meow-gallery/5.5.5/raw/classes/builders/tiles-php.css.php
- Modified: 2021-07-31T01:23:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/meow-gallery/5.5.5/code/classes/builders/tiles-php.css.php#L10-L20`.

```php
<style>

	.mgl-tiles {
		display: <?php echo ($isPreview ? 'block' : 'none') ?>;
	}

	<?php echo esc_attr( $class_id ) ?> {
		margin: <?php echo -1 * ( (int)$gutter / 2 ) ?>px;
		width: calc(100% + <?php echo (int)$gutter ?>px);
	}

	<?php echo esc_attr( $class_id ) ?> .mgl-box {
		padding: <?php echo (int)$gutter / 2 ?>px;
	}

	@media screen and (max-width: 600px) {
		<?php echo esc_attr( $class_id ) ?> .mgl-row {
			height: 100px;
		}

		<?php echo esc_attr( $class_id ) ?> figcaption {
			display: none;
		}
	}

</style>

```
