Skip to content

Instantly share code, notes, and snippets.

View worst-developer's full-sized avatar
🇺🇦
doing magic 🌈

Yaroslav Pidmohylniy worst-developer

🇺🇦
doing magic 🌈
  • Unemployed inc.
  • Lviv, Ukraine
  • 13:26 (UTC +03:00)
View GitHub Profile
//***********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 {
//*****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);
}
}