0.1.0-alpha.16 • Published 4 years ago

@guyn-style/menu v0.1.0-alpha.16

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Menu

the mixin

.nav__trigger {
	span {
		@include menu();
	}
}
ArgumentDefaultDescription
width1.5remWidth of the burger itself
heightrem(2)Height of one line
gutterrem(5)Gutter between the lines
colorwhiteColor of the lines
round0Roundness of the lines
transition-duration0.3sTransition duration

::: tip Make sure to give your parent element some styling :::

The burger will be absolutely positioned in his parent, so if you the parent doesnt have a position, you have to go look for your burger.

.nav__trigger {
	position: relative;
	width: 3rem;
	height: 3rem;
	background-color: #ff0099;
	...;
}

Helper mixins

menu-close

With the close mixin, you can easily make your burger in to an X. Add this mixin to your class somehwere based on another class. For instance if the parent gets a modifier active like .nav__trigger--active:

.nav__trigger {
	span {
		@include menu();
	}
	&--active {
		span {
			@include menu-close();
		}
	}
}

menu-body

Target the "body" of the lines. With this mixin you can add extra styling to the lines.

.nav__trigger {
	span {
		@include menu();
		@include menu-body {
			background-image: linear-gradient(to bottom, blue, green);
		}
	}
}

menu-body-first, menu-body-middle, menu-body-right

Target the first, middle or right "body" of the lines. With this mixin you can add extra styling to a specific line.

.nav__trigger {
	span {
		@include menu();
		@include menu-body-first {
			background-image: linear-gradient(to bottom, blue, green);
		}
	}
}

menu-body-close

Target the body of the lines, when the lines are closed.

.nav__trigger {
	span {
		@include menu();
		@include menu-body-close {
			background-image: linear-gradient(to bottom, blue, green);
		}
	}
	&--active {
		span {
			@include menu-close();
		}
	}
}