Skip to content

Instantly share code, notes, and snippets.

@raffone
Created July 26, 2013 19:12
Show Gist options
  • Save raffone/6091448 to your computer and use it in GitHub Desktop.
Save raffone/6091448 to your computer and use it in GitHub Desktop.
Example of a responsive form grid with 3 columns on desktop, 2 on tablets, and 1 on smartphones with the Rapido Framework.
.example-form {
.form__group {
@include columns(4, $nth-omega: 3n, $media: desk);
@include columns(6, $nth-omega: 2n, $media: lap);
@include columns(12, $media: palm);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment