<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
*** SIMPLE GRID
*** (C) ZACH scolE 2016
**/

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* ==== GRID SYSTEM ==== */

.scontainer {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.srow {
  position: relative;
  width: 100%;
}

.srow [class^="scol"] {
  float: left;
  margin: 0.5rem 1%;
  min-height: 0.125rem;
}


.scol-1,
.scol-2,
.scol-3,
.scol-4,
.scol-5,
.scol-6,
.scol-7,
.scol-8,
.scol-9,
.scol-10,
.scol-11,
.scol-12 {
  width: 98%;
}

.scol-1-sm {
  width: 4.33%;
}

.scol-2-sm {
  width: 12.66%;
}

.scol-2p-sm {
  width: 18.66%;
}

.scol-3-sm {
  width: 21%;
}

.scol-4-sm {
  width: 29.33%;
}

.scol-5-sm {
  width: 37.66%;
}

.scol-6-sm {
  width: 48%;
}

.scol-7-sm {
  width: 54.33%;
}

.scol-8-sm {
  width: 62.66%;
}

.scol-9-sm {
  width: 71%;
}

.scol-10-sm {
  width: 79.33%;
}

.scol-11-sm {
  width: 87.66%;
}

.scol-12-sm {
  width: 98%;
}

.srow::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .scontainer {
    width: 80%;
  }
}

/*@media only screen and (min-width: 45em) {  /* 720px */ 
@media only screen and (min-width: 58em) {  /* ? */
  .scol-1 {
    width: 4.33%;
  }

  .scol-2 {
    width: 12.66%;
  }
  .scol-2p {
    width: 18.66%;
  }

  .scol-3 {
    width: 21%;
  }

  .scol-4 {
    width: 29.33%;
  }

  .scol-5 {
    width: 37.66%;
  }

  .scol-6 {
    width: 48%;
  }

  .scol-7 {
    width: 54.33%;
  }

  .scol-8 {
    width: 62.66%;
  }

  .scol-9 {
    width: 71%;
  }

  .scol-10 {
    width: 79.33%;
  }

  .scol-11 {
    width: 87.66%;
  }

  .scol-12 {
    width: 98%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .scontainer {
    width: 75%;
    max-width: 60rem;
  }
}
</pre></body></html>