Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
v1.0.2
Bolts is a collection of practical Sass mixins and JS functions helping you deal with all the mundane website building and styling tasks, so that you can focus on creating something new. It aims to be a toolkit that does the things you're tired of.
Bolts does not output any unnessecary styles and all functions can be loaded separately through ES6 imports, making its footprint as tiny as possible.
The available options are:
Variable name | Example value | Description |
---|---|---|
$bolts-reset-focus-styles | true | Removes outline on :focus state |
$bolts-reset-list-styles | true | Resets list-style on all <ul> and <ol> elements |
$bolts-reset-legacy-element-styles | true | Resets styles on some deprecated elements (such as font, marquee, blink, nobr and more |
$bolts-default-sticky-footer-wrapper-selector | '> *:first-child' | Selector for wrapper (content without footer) used by sticky-footer mixin |
$bolts-default-sticky-footer-footer-selector | '> footer' | Selector for footer used by sticky-footer mixin |
$bolts-default-pseudo | before | Pseudo selector used by aspect-ratio, clear and vertical-align mixins if argument is not passed |
$bolts-default-font-path | '../fonts' | $path used by font mixin if argument is not passed |
$bolts-default-container-width | 90% | $width used by container mixin if argument is not passed |
$bolts-default-container-max-width | 1080px | $max-width used by container mixin if argument is not passed |
$bolts-default-container-align | center | '$align' used by container mixin if argument is not passed |
$bolts-default-inline-layout-align | top | $align used by inline-layout mixin if argument is not passed |
$bolts-default-inline-layout-gutters | 20px | $gutters used by inline-layout mixin if argument is not passed |
$bolts-default-flex-layout-align | top | $align used by flex-layout mixin if argument is not passed |
$bolts-default-flex-layout-gutters | 20px | $gutters used by flex-layout mixin if argument is not passed |
$bolts-default-background-image | '../images/bg.jpg' | $image used by background mixin if argument is not passed |
$bolts-default-background-size | cover | $size used by backgound mixin if argument is not passed |
$bolts-default-background-position | 50% 50% | $position used by backgound mixin if argument is not passed |
$bolts-default-background-repeat | repeat | $repeat used by backgound mixin if argument is not passed |
$bolts-default-background-attachment | fixed | $attachment used by backgound mixin if argument is not passed |
$bolts-default-background-color | #ddd | $color used by backgound mixin if argument is not passed |
$bolts-default-transition-property | opacity | $property used by transition mixin if argument is not passed |
$bolts-default-transition-duration | 0.2s | $duration used by transition mixin if argument is not passed |
$bolts-default-transition-easing | ease-in-out | $easing used by transition mixin if argument is not passed |
$bolts-default-transition-delay | 0.1s | $delay used by transition mixin if argument is not passed |
$bolts-default-transition-queue | true | Enables queue with default property on transition mixin unless overwritten |
$bolts-default-transition-queue-property | visibility | $queue (property) used by transition mixin if argument is not passed |
$bolts-default-transition-queue-duration | 0s | $queue-duration used by transition mixin if argument is not passed |
$bolts-default-transition-queue-easing | linear | $queue-easing used by transition mixin if argument is not passed |
$bolts-default-auto-col-min | 1 | $min (minimum amount of columns) used by auto-col mixin if argument is not passed |
$bolts-default-auto-col-max | 12 | $max (maximum amount of columns) used by auto-col mixin if argument is not passed |
$bolts-default-responsive-font-size-ratio | 1.6 | $ratio used by responsive-font-size mixin if argument is not passed |
$bolts-breakpoints | (medium: 500px) | Breakpoints that can be accessed by the width and height functions when writing media queries |
$bolts-selectors | (headings: 'h1, h2') | Map containing element collections that can be accessed by the select mixin |
JS setup is extremely simple. Just import and init it as described above and you are good to go.
width()
width-from()
width-to()
height()
height-from()
height-to()
Functions to run inside your @media
queries that lets you access your defined breakpoints. It automatically compensates your pixel values to prevent duplicate properties being set.
Usage:
.columns {
@include inline-layout;
.column {
@media ( width-to(small) ) { width: 100%; }
@media ( width(small, medium) ) { width: 50%; }
@media ( width(medium, large) ) { width: 25%; }
@media ( width-from(large) ) { width: 12.5%; }
}
}
Arguments:
Name | Accepted values | Description |
---|---|---|
$from | CSS length unit or key name from the $bolts-breakpoints map | Sets the min-width or min-height in the media query. |
$to | CSS length unit or key name from the $bolts-breakpoints map | Sets the max-width or max-height in the media query. |
retina()
Function to run in your @media
queries to target retina screens.
Usage:
.icon {
@media ( retina() ) { background-image: url('icon@2x.jpg'); }
}
ease()
This function currently has no description
Name | Accepted values | Description |
---|---|---|
$easing-name | Check out full list here | Name of the desired easing |
reset
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
sticky-footer()
This mixin currently has no description
Usage:
.page {
@include sticky-footer(
'.page-wrapper',
'.page-footer'
);
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$wrapper-selector | - | - | - |
$footer-selector | - | - | - |
font()
Simpler declaration of @font-face
s (include this before any output, including the reset and boilerplate).
Usage:
@include font(
$family: FontAwesome,
$filename: fontawesome-webfont,
$formats: ( eot, woff2, woff, ttf, svg ),
$svg-id: fontawesomeregular
);
@include font(
$family: 'Lato',
$formats: ( woff ),
$variations: (
( filename: 'Lato-Regular' ),
( filename: 'Lato-Italic', style: italic ),
( filename: 'Lato-Bold', weight: 700 ),
( filename: 'Lato-BoldItalic', weight: 700, style: italic )
)
)
Arguments:
Name | Example values | Description |
---|---|---|
$family | 'Lato' | Font family name |
$weight | 400 | font-weight |
$style | normal | font-style |
$filename | Lato-Regular | Font filename without extension |
$formats | (ttf, otf, woff, woff2, svg) | List of the available formats of your font |
$path | '../fonts' | Defaults to $bolts-font-path |
$svg-id | latoregular | Defaults to filename |
$variations | ( (filename: Lato-Regular), (filename: Lato-Bold, weight: 700) ) | List of maps with font variations. You only need to enter the properties that deviate from the defaults. |
responsive-font-size()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$ratio | - | - | - |
$min | - | - | - |
$max | - | - | - |
container()
Sets basic container styling on element.
Usage:
.page {
.page-inner {
@include container(90%, 1080px);
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$width | CSS length unit | Value of $bolts-default-container-width | Width of container |
$max-width | CSS length unit | Value of $bolts-default-container-max-width | Max width of container |
align | left , center , right | Value of $bolts-default-container-align | Container alignment |
clear-whitespace()
Eliminates the space between inline-block
elements using font-size: 0
.
Usage:
.header {
@include clear-whitespace($font-size: 12px);
.header-logo {
display: inline-block;
width: 120px;
height: 60px;
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$font-size | CSS length unit | 1rem | Font size to reset child elements to (can't use em) |
overlay()
This mixin currently has no description
Usage:
.hero {
position relative;
height: 100vh;
&:before {
content: '';
@include overlay;
background-color: rgba(black, 0.5);
}
}
Arguments:
Name | Accepted values | Description |
---|---|---|
$force-size | Bool | sets width and height to 100% (necessary when applied to iframes) |
background()
This mixin currently has no description
Usage:
.icon {
@include background(
'../images/icon.png',
$size: contain,
$position: 50% 50%
);
width: 40px;
height: 40px;
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
transition()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
transition-height()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
aspect-ratio()
Set an aspect ratio for a block element.
Usage:
.hero {
@include background('../images/background.jpg');
@include aspect-ratio(16, 9);
}
Arguments:
Name | Accepted values | Description |
---|---|---|
$x | Number | What width value to base the ratio calculation on |
$y | Number | What height value to base the ratio calculation on |
clear()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
center()
Center an element inside it's closest relatively positioned parent in either, or both direction (vertical/horizontal)
Usage:
.hero {
position: relative;
.hero-text {
@include center(vertical);
left: 0;
right: 0;
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$direction | both , vertical , horizontal | both | What axis to center the element on |
Known issue: Some browsers positions the element "between pixels", making it appear blurred. Use
transform-style: preserve-3d
on the parent to avoid this.
vertical-align()
This mixin currently has no description
Usage:
.hero {
@include vertical-align(middle);
min-height: 100vh;
text-align: center;
.hero-inner {
width: 90%;
max-width: 1080px;
text-align: left;
.hero-title {
@extend %title-large;
}
.hero-subtitle {
@extend %title-medium;
}
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
antialias()
This mixin currently has no description
Usage:
.hero-text {
color: white;
@include antialias;
}
Arguments:
Name | Accepted values | Description |
---|---|---|
$method | default, none, reset | Sets font smoothing (webkit and moz-osx), defaults to antialiased/grayscale |
scroll()
This mixin currently has no description
Usage:
.modal-inner {
@include scroll;
}
grayscale()
This mixin currently has no description
Usage:
.photo {
@include transition(filter -webkit-filter);
&:hover {
@include grayscale;
}
}
inline-layout()
inline-row()
inline-column()
The inline-layout component is another take on layouts, where the columns are inline-block
elements, which eliminates the need for rows, and makes them respond to text-align. This is especially useful for dynamic content.
Usage:
HTML
<div class="items">
<div class="item is-small"></div>
<div class="item is-medium"></div>
<div class="item is-small"></div>
<div class="item is-large"></div>
<div class="item is-small"></div>
</div>
SCSS
.items {
@include inline-layout;
.item {
@media ( width-to(medium) ) {
&.is-small { width: 50%; }
&.is-medium, &.is-large { width: 100%; }
}
@media ( width-from(medium) ) {
&.is-small { width: 25%; }
&.is-medium { width: 50%; }
&.is-large { width: 75%; }
}
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$gutters | CSS length unit | 0 | Size of gutters |
$col | String | '> *' | Selector used to find a direct descendant column element |
flex-layout()
flex-row()
flex-column()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
stagger-delay()
Gives every selected element an increased delay based on its order in the DOM. Example usage is for making cascading transitions and animations.
Usage:
.menu.is-open {
.menu-item {
transform: translateX(-50px);
transition: transform 300ms ease;
@include stagger-delay(
$increment: 50ms,
$iterations: 10
);
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
$type | transition , animation | transition | Specifies if the mixin outputs transition-delay or animation-delay . |
$start | CSS time unit | 0s | Add a delay before the incremantal-delay starts. |
$increment | CSS time unit | 0s | The amount of time incremented for each item. |
$iterations | Number | 0 | Amount of iterations to output. This is needed since Sass doesn't have access to the DOM. |
$modifier | Number | 0 | A modifier to create non-linear iterations. General sweetspot is somewhere between 1 and 2. |
$direction | forwards , backwards | forwards | Specifies if the delay should be added from the beginning or the end of the selected elements. |
auto-col()
Sets widths to dynamically fit all columns in one row
Usage:
.columns {
@include inline-layout;
.column {
// 5 columns = width: 20%
// 2 columns = width: 50%
@include auto-col;
}
}
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
reverse()
Reverse the order of an element's children without the need for duplicate markup.
Usage:
.items {
@include inline-layout;
.item { width: 25%; }
@media ( width-to(medium) ) {
@include reverse;
}
}
state()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
select()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
placeholder()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
count()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
resizing()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
orientation()
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
hover
no-hover
This mixin currently has no description
Usage:
// This mixin currently has no example
Arguments:
Name | Accepted values | Default value | Description |
---|---|---|---|
- | - | - | - |
Javascript functionality currently has no documentation
[1.0.2] - 2019-04-29
FAQs
Front-end helper library
The npm package bolts-lib receives a total of 3 weekly downloads. As such, bolts-lib popularity was classified as not popular.
We found that bolts-lib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.