# getresponse/1.3.5/includes/classes/scssphp/tests/inputs/content.scss

GetResponse Forms by Optin Cat, version 1.3.5. 62 lines.

- Page: https://pluginprobe.com/plugins/getresponse/1.3.5/code/includes/classes/scssphp/tests/inputs/content.scss
- Raw: https://pluginprobe.com/plugins/getresponse/1.3.5/raw/includes/classes/scssphp/tests/inputs/content.scss
- Modified: 2015-06-12T09:52:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/getresponse/1.3.5/code/includes/classes/scssphp/tests/inputs/content.scss#L10-L20`.

```scss

@mixin apply-to-ie6-only {
    * html {
        @content;
    }
}
@include apply-to-ie6-only {
    #logo {
        background-image: url(/logo.gif);
    }
}


$color: white;
@mixin colors($color: blue) {
    background-color: $color;
    @content;
    border-color: $color;
}
.colors {
    @include colors { color: $color; }
}


@mixin iphone {
    @media only screen and (max-width: 480px) {
        @content;
    }
}

@include iphone {
    body { color: red }
}


#sidebar {
  $sidebar-width: 300px;
  width: $sidebar-width;
  @include iphone {
    width: $sidebar-width / 3;
  }
}


@mixin respond-to($width) {
  @media only screen and (min-width: $width) { @content; }
}

@include respond-to(40em) {
  @for $i from 1 through 2 {
    .grid-#{$i} { width: 100%; }
  }
}

@include respond-to(40em) {
  $i: 1;
  @while $i <= 2 {
    .grid-#{$i} { width: 100%; }
    $i: $i + 1;
  }
}

```
