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.
RFS (abbreviation for responsive font size) is an algorithm which automatically calculates the appropriate font size based on the dimensions of the browser viewport. It's available in 5 languages:
RFS can be installed using a package manager (recommended):
npm:
$ npm install rfs --save
yarn:
$ yarn add rfs
Bower:
$ bower install rfs --save
Copy/paste (not recommended):
The source files can also be downloaded manually and used in a project. This method is not recommended because you lose the ability to easily and quickly manage and update RFS as a dependency.
.title {
@include responsive-font-size(4rem); // OR @include responsive-font-size(64px); OR @include rfs(64);
}
.title
+responsive-font-size(4rem) // OR +responsive-font-size(64px) OR +rfs(64)
.title {
responsive-font-size: 4rem; // OR responsive-font-size: 64px; OR rfs: 64;
}
.title {
.responsive-font-size(4rem); // OR .responsive-font-size(64px); OR .rfs(64);
}
.title
responsive-font-size(4rem) // OR responsive-font-size(64px) OR rfs(64)
.title {
font-size: 4rem;
}
@media (max-width: 1200px) {
.title {
font-size: calc(1.6rem + 3.2vw);
}
}
px
or rem
)SCSS, Sass & Stylus:
$rfs-minimum-font-size
Less:@rfs-minimum-font-size
PostCSS:minimumFontSize
The option will prevent the font size from becoming too small on smaller screens. If the font size which is passed to RFS is smaller than this minimum font size, no fluid font rescaling will take place.
Default value: 1rem
px
or rem
)SCSS, Sass & Stylus:
$rfs-font-size-unit
Less:@rfs-font-size-unit
PostCSS:fontSizeUnit
The output font size will be rendered in this unit.
Default value: rem
px
, em
or rem
)SCSS, Sass & Stylus:
$rfs-breakpoint
Less:@rfs-breakpoint
PostCSS:breakpoint
Above this breakpoint, the font size will be equal to the font size you passed to RFS; below the breakpoint, the font size will dynamically scale.
Default value: 1200px
px
, em
or rem
)SCSS, Sass & Stylus:
$rfs-breakpoint-unit
Less:@rfs-breakpoint-unit
PostCSS:breakpointUnit
The width of the max width in the media query will be rendered in this unit.
Default value: px
SCSS, Sass & Stylus:
$rfs-factor
Less:@rfs-factor
PostCSS:factor
This value determines the strength of font size resizing. The higher the factor, the less difference there is between font sizes on small screens. The lower the factor, the less influence RFS has, which results in bigger font sizes for small screens. The factor must me greater than 1, setting it to 1 will disable dynamic rescaling.
Default value: 5
SCSS, Sass & Stylus:
$rfs-two-dimensional
Less:@rfs-two-dimensional
PostCSS:twoDimensional
Enabling the two dimensional media queries will determine the font size based on the smallest side of the screen with vmin
. This prevents the font size from changing if the device toggles between portrait and landscape mode.
Default value: false
SCSS, Sass & Stylus:
$rfs-class
Less:@rfs-class
PostCSS:class
RFS can ben enabled or disabled with a class. There are 3 options:
disable
.disable-responsive-font-size
class to an element to disable responsive font sizes for the element and its child elements.enable
.enable-responsive-font-size
class can be added to an element to enable responsive font sizes for the element and its child elements.false
Default value: false
SCSS, Sass & Stylus:
$rfs-safari-iframe-resize-bug-fix
Less:@rfs-safari-iframe-resize-bug-fix
PostCSS:safariIframeResizeBugFix
Safari doesn't resize its font size in an iframe if the iframe is resized. To fix this min-width: 0vw
can be added and that's what happens if this option is enabled. See #14.
Default value: false
By setting a second parameter to true, !important
is added after the font-size value. (Example is in scss
)
.label {
@include responsive-font-size(2.5rem, true);
}
CSS:
.label {
font-size: 2.5rem !important;
}
@media (max-width: 1200px) {
.label {
font-size: calc(1.3rem + 1.6vw) !important;
}
}
html
or body
(especially if the minimum font size is lowered), otherwise some text may not dynamically rescale. Note that setting RFS on html
can influence the value of rem
.em
or unitless).Martijn Cuppens
Code released under the MIT license.
FAQs
Powerful & easy-to-use responsive resizing engine.
The npm package rfs receives a total of 11,322 weekly downloads. As such, rfs popularity was classified as popular.
We found that rfs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.