This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.2.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $number: 6; | |
| $name: ( | |
| ("one"), | |
| ("two" "halv" "halves"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.2) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| $numbers: ("3": "three", "4": "four"); | |
| @each $number, $i in $numbers { | |
| .#{$i}-#{$number} { | |
| /* CSS styles */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.2.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $numbers: (3 "three") (4 "four"); | |
| @each $i in $numbers { | |
| .#{nth($i,2)}-#{nth($i,1)} { | |
| /* CSS styles */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.2.13) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $carouselContent : "carousel-content-1" "buying_carousel_image_1.jpg"; | |
| @mixin do_carousel($carousel) { | |
| $baseClass: nth($carousel, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| .search-doctors-box { | |
| position:relative; | |
| z-index:999; | |
| margin: 0px; | |
| @at-root #{&}--at-map { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="tcounter"> | |
| <ul class="roto10 h10"> | |
| <li class="a0"><span>0</span></li> | |
| <li class="a1"><span>1</span></li> | |
| <li class="a2"><span>2</span></li> | |
| <li class="a3"><span>3</span></li> | |
| <li class="a4"><span>4</span></li> | |
| <li class="a5"><span>5</span></li> | |
| <li class="a6"><span>6</span></li> | |
| <li class="a7"><span>7</span></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $last-rule: null; | |
| .search-doctors-box { | |
| position:relative; | |
| z-index:999; | |
| margin: 0px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $brand_clr: (home, blue), (about, orange), (contact, yellow); | |
| $color: white !default; | |
| @mixin branding { | |
| @each $brand in $brand_clr { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $max-mobile: 300px; | |
| @mixin isMobile() { | |
| @media only screen and (max-width: $max-mobile) { @content; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $max-mobile: 300px; | |
| @mixin isMobile() { | |
| & { @content; } | |
| } |