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
| //***********scss*************** | |
| // Создаем mixin | |
| @mixin respond-to($media) { | |
| @if $media == handhelds { | |
| @media only screen and (max-width: 479px) { @content; } | |
| } | |
| @else if $media == wide-handhelds { | |
| @media only screen and (min-width: 480px) and (max-width: 767px) { @content; } | |
| } | |
| @else if $media == tablets { |
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
| //*****scss***** | |
| $colors: #f74a3a #fcbe26 #8cc687 #4da5f2 #b01395; | |
| $i:0; | |
| .menu-main ul li { | |
| @each $col in red, orange, green, blue, purple { | |
| $i: $i + 1; | |
| &.#{$col} { | |
| background: nth($colors, $i); | |
| } | |
| } |
NewerOlder