1.0.0 • Published 3 months ago

@schascha/sassy-mixins v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

sassy-mixins

Build npm install size

Just some useful sass mixins that I use in my projects

Examples

Installation

You can use sassy-mixins in your project by installing it using npm:

npm i @schascha/sassy-mixins

Usage

@import '@schascha/sassy-mixins';

Mixins

Accessibility

Only display content to screen readers.

.sr-only {
	@include sr-only();
}

Compiles to:

.sr-only {
	overflow: hidden;
	position: absolute;
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
	border-width: 0;
	white-space: nowrap;
}

Breakpoint

Helper to organize your media queries.

$mobile: 600px !default;
$tablet: 900px !default;
$desk: 1200px !default;

.breakpoint {
	@include mq($mobile) {
		background: green;
	}

	@include mq($tablet) {
		background: blue;
	}

	@include mq($desk) {
		background: yellow;
	}

	@include mq($tablet, $desk - 1px) {
		background: orange;
	}

	@include mq($max: $mobile - 1px) {
		background: purple;
	}
}

Compiles to:

@media screen and (min-width: 600px) {
	.breakpoint {
		background: green;
	}
}

@media screen and (min-width: 900px) {
	.breakpoint {
		background: blue;
	}
}

@media screen and (min-width: 1200px) {
	.breakpoint {
		background: yellow;
	}
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
	.breakpoint {
		background: orange;
	}
}

@media screen and (max-width: 599px) {
	.breakpoint {
		background: purple;
	}
}

Button-Reset

Reset button or other form field brower default styles.

button {
	@include button-reset();
}

Compiles to:

button {
	appearance: none;
	background: none;
	border: 0;
	outline: 0;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-align: inherit;
}

Clearfix

.clearfix {
	@include clearfix();
}

Compiles to:

.clearfix::after {
	content: '';
	display: table;
	clear: both;
}

Embed

Responsive embeds, like videos or iFrames. By default the ratio is 16:9. Other options are '4:3', '1:2', '2:1', '1:1' or custom numbers. Also accepts lists.

.embed {
	@include embed-container();

	iframe,
	embed,
	object,
	video {
		@include embed-element();
	}
}

Compiles to:

.embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.embed iframe,
.embed embed,
.embed object,
.embed video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

Font-Face

@include font-face('OpenSans', '../fonts/OpenSans-Regular', $svg: 'OpenSansRegular');

Compiles to:

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Regular.eot");
	src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype"), url("../fonts/OpenSans-Regular.svg#OpenSansRegular") format("svg");
	font-weight: normal;
	font-style: normal;
}

Some font types are missing? Just update the $exts property:

@include font-face('Only-Woff', '../fonts/OnlyWoff', $exts: woff2 woff);

Compiles to:

@font-face {
	font-family: "Only-Woff";
	src: url("../fonts/OnlyWoff.woff2") format("woff2"), url("../fonts/OnlyWoff.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

Position

.absolute {
	@include absolute(top 0 left 1rem);
}

.relative {
	@include relative(left 50%);
}

.fixed {
	@include fixed(0 0 0 0);
}

.sticky {
	@include sticky(top);
}

Compiles to:

.absolute {
	position: absolute;
	top: 0;
	left: 1rem;
}

.relative {
	position: relative;
	left: 50%;
}

.fixed {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.sticky {
	position: sticky;
	top: 0;
}

Retina

.image {
	background-image: url('image.jpg');

	@include retina() {
		background-image: url('image@2x.jpg');
		background-size: contain;
	}
}

Compiles to:

.image {
	background-image: url("image.jpg");
}

@media only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
	.image {
		background-image: url("image@2x.jpg");
		background-size: contain;
	}
}

Text-Truncate

.text-truncate {
	@include text-truncate();
}

Compiles to:

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

Theme

Add styles depending on a theme variable.

$theme: 'foo';

.theme {
	@include theme('foo') {
		background: red;
	}
}

Compiles to:

.theme {
	background: red;
}

Functions

Font-Size

A font-size helper function for em and rem units.

$font-size-base: 16px;  // Define base font-size

h1 {
	font-size: rem(30);

	> span {
		font-size: em(24, 30);
	}
}

Compiles to:

h1 {
	font-size: 1.875rem;
}

h1 > span {
	font-size: 0.8em;
}

Bugs? 🐛

Please let me know: https://github.com/Schascha/sassy-mixins/issues

Buy me a Coffee ☕

Support this project and others via PayPal. Thanks

License

MIT

Copyright (c) 2018 Sascha Künstler

1.0.0

3 months ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago