// Margin-top
@for $i from 0 through 150 {
	.m-top-#{$i * 5} {
		margin-top: $i * 5 + px;
	}
}

// Margin-right
@for $i from 0 through 150 {
	.m-right-#{$i * 5} {
		margin-right: $i * 5 + px;
	}
}

// Margin-bottom
@for $i from 0 through 150 {
	.m-bottom-#{$i * 5} {
		margin-bottom: $i * 5 + px;
	}
}

// Margin-bottom
@for $i from 0 through 150 {
	.m-left-#{$i * 5} {
		margin-left: $i * 5 + px;
	}
}