audio {
width: 100%;
}
+
+/**
+ * Image grid settings START
+ **/
+.imagegrid-row {
+ display: -ms-flexbox; /* IE10 */
+ display: flex;
+ -ms-flex-wrap: wrap; /* IE10 */
+ flex-wrap: wrap;
+ padding: 0 4px;
+ box-sizing: border-box;
+}
+
+/* Create four equal columns that sits next to each other */
+.imagegrid-column {
+ -ms-flex: 50%; /* IE10 */
+ flex: 50%;
+ max-width: 50%;
+ padding: 0 4px;
+ box-sizing: border-box;
+}
+
+.imagegrid-column img {
+ margin-top: 8px;
+ vertical-align: middle;
+ width: 100%;
+}
+/**
+ * Image grid settings END
+ **/
\ No newline at end of file
-<link rel="stylesheet" href="view/theme/frio/css/image_grid.css" type="text/css" media="screen"/>
-
-<div id="row" class="row">
- <div class="column">
- {{foreach $columns.fc as $img}}
- {{include file="content/image.tpl" image=$img}}
+<div class="imagegrid-row">
+ <div class="imagegrid-column">
+ {{foreach $columns.fc as $img}}
+ {{include file="content/image.tpl" image=$img}}
{{/foreach}}
</div>
- <div class="column">
- {{foreach $columns.sc as $img}}
+ <div class="imagegrid-column">
+ {{foreach $columns.sc as $img}}
{{include file="content/image.tpl" image=$img}}
{{/foreach}}
</div>
+++ /dev/null
-* {
- box-sizing: border-box;
-}
-
-.row {
- display: -ms-flexbox; /* IE10 */
- display: flex;
- -ms-flex-wrap: wrap; /* IE10 */
- flex-wrap: wrap;
- padding: 0 4px;
-}
-
-/* Create four equal columns that sits next to each other */
-.column {
- -ms-flex: 50%; /* IE10 */
- flex: 50%;
- max-width: 50%;
- padding: 0 4px;
-}
-
-.column img {
- margin-top: 8px;
- vertical-align: middle;
- width: 100%;
-}