Your IP : 216.73.217.112


Current Path : /home/zieirix/www/media/gantry5/engines/nucleus/scss/nucleus/
Upload File :
Current File : /home/zieirix/www/media/gantry5/engines/nucleus/scss/nucleus/_flex.scss

// Page Container
.g-container {
	margin: 0 auto;
	padding: 0;
}

.g-block .g-container {
    width: auto;
}

// Grid Row and Column Setup
.g-grid {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	text-rendering: optimizespeed;
	&.nowrap {
		flex-flow: row;
	}
}

.g-block {
	flex: 1;
	min-width: 0;
	min-height: 0;
}

// Reordering
.first-block {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.last-block {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}