Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created July 10, 2014 12:26
Show Gist options
  • Save jshawl/0a2a66667ad9e0895155 to your computer and use it in GitHub Desktop.
Save jshawl/0a2a66667ad9e0895155 to your computer and use it in GitHub Desktop.
a precess production
@for $i from 1 through 3{
@media all and ( min-width: #{$i}em ){
body{
@if $i == 1{
height:100%;
border-style:solid;
border-color:hotpink
}
border-width: #{$i}px;
}
}
}
@media all and (min-width: 1em) {
body {
height: 100%;
border-style: solid;
border-color: hotpink;
border-width: 1px;
}
}
@media all and (min-width: 2em) {
body {
border-width: 2px;
}
}
@media all and (min-width: 3em) {
body {
border-width: 3px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment