Minimog utilities

Custom Minimog classes with a purpose to reduce the frequency of highly repetitive declarations.

Spacing

Assign responsive-friendly margin or padding values to an element or a subset of its sides with shorthand classes. Includes support for individual properties, all properties, and vertical and horizontal properties.

Spacing utilities that apply to all breakpoints, from xs to xl, have no breakpoint abbreviation in them. This is because those classes are applied from min-width: 0 and up, and thus are not bound by a media query. The remaining breakpoints, however, do include a breakpoint abbreviation.

The classes are named using the format {property}{sides}-{size} for xs and {property}{sides}-{breakpoint}-{size} for sm, md, lg, and xl.

Where property is one of:

  • m- for classes that set margin
  • p - for classes that set padding

Where sides is one of:

  • t - for classes that set margin-top or padding-top
  • b - for classes that set margin-bottom or padding-bottom
  • l - for classes that set margin-left or padding-left
  • r - for classes that set margin-right or padding-right
  • x - for classes that set both *-left and *-right
  • y - for classes that set both *-top and *-bottom
  • blank - for classes that set a margin or padding on all 4 sides of the element

Where size is one of:

  • 0 - for classes that eliminate the margin or padding by setting it to 0
  • 1 - (by default) for classes that set the margin or padding to $spacer * .3125
  • 2 - (by default) for classes that set the margin or padding to $spacer * .625
  • 3 - (by default) for classes that set the margin or padding to $spacer
  • 4 - (by default) for classes that set the margin or padding to $spacer * 1.25
  • 5 - (by default) for classes that set the margin or padding to $spacer * 1.5
  • 6 - (by default) for classes that set the margin or padding to $spacer * 1.875
  • 7 - (by default) for classes that set the margin or padding to $spacer * 2.5
  • 8 - (by default) for classes that set the margin or padding to $spacer * 3.125
  • 9 - (by default) for classes that set the margin or padding to $spacer * 3.75
  • 10 - (by default) for classes that set the margin or padding to $spacer * 4.375
  • 11 - (by default) for classes that set the margin or padding to $spacer * 5
  • 12 - (by default) for classes that set the margin or padding to $spacer * 5.625
  • 13 - (by default) for classes that set the margin or padding to $spacer * 6.25
  • 14 - (by default) for classes that set the margin or padding to $spacer * 6.875
  • 15 - (by default) for classes that set the margin or padding to $spacer * 7.5
  • 16 - (by default) for classes that set the margin or padding to $spacer * 9.375
  • 17 - (by default) for classes that set the margin or padding to $spacer * 10.625
  • auto - for classes that set the margin to auto

(You can add more sizes by adding entries to the $spacers Sass map variable via: _theme-variables.scss.)

Minimog includes several offset classes, like:

<div class="ml-n2">.ml-n2</div>
<div class="ml-n3">.ml-n3</div>
<div class="mr-n2">.mr-n2</div>
<div class="mt-n1">.mt-n1</div>
<div class="mt-n5">.mt-n5</div>
<div class="mt-n6">.mt-n6</div>
<div class="mt-n9">.mt-n9</div>
<div class="mb-n9">.mb-n9</div>

Font sizes

Minimog includes several responsive font size, like:

.fs-11

.fs-12

.fs-14

.fs-16

.fs-16

.fs-18

.fs-20

.fs-24

.fs-30

.fs-34

.fs-40

.fs-56

<p class="fs-11">.fs-11</p>
<p class="fs-12">.fs-12</p>
<p class="fs-14">.fs-14</p>
<p class="fs-15">.fs-16</p>
<p class="fs-16">.fs-16</p>
<p class="fs-18">.fs-18</p>
<p class="fs-20">.fs-20</p>
<p class="fs-24">.fs-24</p>
<p class="fs-30">.fs-30</p>
<p class="fs-34">.fs-34</p>
<p class="fs-40">.fs-40</p>
<p class="fs-56">.fs-56</p>

Line Height

.lh-12

.lh-13

.lh-15

.lh-16

.lh-1875

.lh-2

.lh-213

<p class="lh-12">.lh-12</p>
<p class="lh-13">.lh-13</p>
<p class="lh-15">.lh-15</p>
<p class="lh-16">.lh-16</p>
<p class="lh-1875">.lh-1875</p>
<p class="lh-2">.lh-2</p>
<p class="lh-213">.lh-213</p>

Opacity

.opacity-1

.opacity-2

.opacity-3

.opacity-4

.opacity-5

.opacity-6

.opacity-7

.opacity-8

.opacity-9

.opacity-10

<p class="opacity-1">.opacity-1</p>
<p class="opacity-2">.opacity-2</p>
<p class="opacity-3">.opacity-3</p>
<p class="opacity-4">.opacity-4</p>
<p class="opacity-5">.opacity-5</p>
<p class="opacity-6">.opacity-6</p>
<p class="opacity-7">.opacity-7</p>
<p class="opacity-8">.opacity-8</p>
<p class="opacity-9">.opacity-9</p>
<p class="opacity-10">.opacity-10</p>

Border

.border-2x

.border-3x

.border-4x

.border-5x

.border-6x

.border-6x .border-light-dark

.border-6x .border-hover-light-dark

.border-6x .border-white-darker

<p class="py-5 border-left border-2x pl-3">.border-2x</p>
<p class="py-5 border-left border-3x pl-3">.border-3x</p>
<p class="py-5 border-left border-4x pl-3">.border-4x</p>
<p class="py-5 border-left border-5x pl-3">.border-5x</p>
<p class="py-5 border-left border-6x pl-3">.border-6x</p>
<p class="py-5 border-left border-6x pl-3 border-light-dark">.border-6x .border-light-dark</p>
<p class="py-5 border-left border-6x pl-3 border-hover-light-dark">.border-6x .border-hover-light-dark</p>
<p class="py-5 border-left border-6x pl-3 border-white-darker">.border-6x .border-white-darker</p>

Text Decoration

.text-decoration-underline

<p class="text-decoration-underline">.text-decoration-underline</p>

Display Grid

Grid with 3 columns, each column occupies 1 column and 1 row

.grid-item .gr-1 .gc-1
.grid-item .gr-1 .gc-1
.grid-item .gr-1 .gc-1

Grid with 2 columns, 1 column occupies 1 column and 1 row and rest occupies 1 column and 1 row

.grid-item .gr-1 .gc-2
.grid-item .gr-1 .gc-1

Grid with 2 columns, 1 column occupies 1 column and 2 row and rest occupies 1 column and 1 row

.grid-item .gr-2 .gc-1
.grid-item .gr-1 .gc-1
.grid-item .gr-1 .gc-1
<p>Grid with 3 columns, each column occupies 1 column and 1 row</p>
<div class="d-grid grid-gap g-3">
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
</div>
<p class="pt-6">Grid with 2 columns, 1 column occupies 1 column and 1 row and rest occupies 1 column and 1 row</p>
<div class="d-grid grid-gap g-3">
	<div class="grid-item bg-color-1 gr-1 gc-2 p-6">
		.grid-item .gr-1 .gc-2
	</div>
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
</div>
<p class="pt-6">Grid with 2 columns, 1 column occupies 1 column and 2 row and rest occupies 1 column and 1 row</p>
<div class="d-grid grid-gap g-3">
	<div class="grid-item bg-color-1 gr-2 gc-1 p-6">
		.grid-item .gr-2 .gc-1
	</div>
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
	<div class="grid-item bg-color-1 gr-1 gc-1 p-6">
		.grid-item .gr-1 .gc-1
	</div>
</div>

List Group No Border

  • An item
  • A second item
  • A third item
  • A fourth item
  • And a fifth one
<ul class="list-group list-group-no-border">
	<li class="list-group-item">An item</li>
	<li class="list-group-item">A second item</li>
	<li class="list-group-item">A third item</li>
	<li class="list-group-item">A fourth item</li>
	<li class="list-group-item">And a fifth one</li>
</ul>

Hover Image effect

Hover shine
Hover zoom in
Hover opacity
Hover flash
<div class="d-lg-flex">
	<div class="hover-shine mb-6">
		<img src="../../images/banner-15.jpg" alt="Hover shine">
	</div>
	<div class="hover-zoom-in mb-6 d-inline-block ml-lg-6">
		<img src="../../images/banner-16.jpg" alt="Hover zoom in">
	</div>
</div>
<div class="d-lg-flex">
	<div class="hover-opacity mb-6">
		<img src="../../images/banner-15.jpg" alt="Hover opacity">
	</div>
	<div class="hover-flash mb-6 ml-lg-6">
		<img src="../../images/banner-16.jpg" alt="Hover flash">
	</div>
</div>

Position

.pos-fixed-top-center

.pos-fixed-top-right

.pos-fixed-bottom

.pos-fixed-bottom-right

.pos-fixed-center

.pos-fixed-left-center

.pos-fixed-right-center

.pos-fixed-top

<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-top-center">.pos-fixed-top-center</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-top-right">.pos-fixed-top-right</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-bottom">.pos-fixed-bottom</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-bottom-right">.pos-fixed-bottom-right</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-center">.pos-fixed-center</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-left-center">.pos-fixed-left-center</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-right-center">.pos-fixed-right-center</p>
</div>
<div class="position-relative p-10 bg-color-1 mb-6">
	<p class="position-absolute pos-fixed-top">.pos-fixed-top</p>
</div>