codeforamerica / rva-screening-ui-prototypes

A repo for sketching and comparing user interface ideas for rva-screener
1 stars 2 forks source link

Create initial media queries #17

Closed mapsam closed 9 years ago

mapsam commented 9 years ago

Adds some @media queries to the .container element

.container {
  margin:auto;
  padding: 0 1em;
  @media (min-width: $break) {
    width: $break - 2em;
  }
  @media (min-width: $break-large) {
    width: $break-large - 2em;
  }
}

using the following break points (completely arbitrary right now)

$break: 50em;
$break-large: 70em;