@brandocms/europacss v1.0.0-beta.5
EuropaCSS originally began as a collection of SASS mixins and functions that came in handy when working with design agencies that had very specific designs over different breakpoints. These design systems translate pretty well to configurations and allows weeding out a lot of the boilerplate involved.
USAGE WITH POSTCSS
Example postcss.config.js:
module.exports = {
plugins: [
require('@univers-agency/europacss')({
// You can specify your config in one of these ways:
// 1. Default: Automatically looks for ./europa.config.js or ./europa.config.cjs
// 2. Path to config file:
// config: './path/to/europa.config.js',
// 3. Direct configuration object:
// config: { /* Your europacss config */ },
// 4. PostCSS Preset Env options:
presetEnv: {
// browsers: ['> 1%', 'last 2 versions'],
// features: { /* specific features */ },
// preserve: false,
// disable: false // Set to true to disable postcss-preset-env entirely
}
}),
require('postcss-reporter')({ clearReportedMessages: true, throwError: false })
]
}Note: You no longer need to include
autoprefixerorcss-mqgroupas those are now handled internally by EuropaCSS.
NOTES
- Remember to keep your
@importstatements at the top of your.cssfile - Add
@europa arrows;
@europa base;to your main stylesheet
CONFIG
setMaxForVw
If you have a set max size for your largest container, you should enable setMaxForVw. This will
ensure that the largest breakpoint of your vw based sizes will be set to a fixed size.
For instance, if you have:
{
setMaxForVw: true,
theme: {
container: {
maxWidth: {
mobile: '100%',
tablet: '100%',
desktop: '1920px'
}
},
typography: {
sizes: {
h1: {
mobile: '18px',
tablet: '4vw',
desktop: '4vw'
}
}
}
}
}we will replace the desktop key's 4vw with 1920/100*4 so that the font will not scale
beyond the container's maxWidth.
dpxViewportSize and dpxViewportSizes
When working with design pixel units (dpx), you can specify reference viewport widths to convert design pixels to viewport width units. This is especially useful when working with Figma designs that are created at specific widths for different device sizes.
You can set a global reference width with dpxViewportSize, or specify different reference widths
for individual breakpoints and breakpoint collections using dpxViewportSizes:
{
// Global fallback reference width (used if no specific width is defined)
dpxViewportSize: 1440, // Default is 1440px if not specified
// Per-breakpoint and per-collection reference viewport widths
dpxViewportSizes: {
// Direct breakpoint references
xs: 375,
sm: 768,
// Breakpoint collections
$desktop: 1440,
$tablet: 768,
$mobile: 375
},
theme: {
typography: {
sizes: {
heading: {
mobile: '25dpx', // Uses 375px reference (from $mobile collection)
tablet: '35dpx', // Uses 768px reference (from $tablet collection)
desktop: '45dpx' // Uses 1440px reference (from $desktop collection)
}
}
}
}
}For example, when using 25dpx at the $mobile reference viewport width of 375px, it will be
converted to 6.667vw ((25/375)*100). The same value in the $desktop collection would
use the 1440px reference, resulting in 1.736vw ((25/1440)*100).
When processing dpx units, Europa looks for a reference width in this order:
1. A direct match in dpxViewportSizes for the current breakpoint (e.g., xs, md, etc.)
2. A match in dpxViewportSizes for a collection that includes the current breakpoint (e.g., $mobile, $desktop)
3. The global dpxViewportSize value
4. Default fallback of 1440px
This makes it easy to maintain the exact sizing from design files while keeping the responsive behavior of viewport units across different device sizes.
Typography
Sizes
typography
sizes
size_name
breakpoint_name: value
Examples
A regular setup:
typography: {
sizes: {
base: {
mobile: '16px'
}
}
}If value is an object, all properties will be added to the selector, i.e:
typography: {
sizes: {
base: {
mobile: {
'font-size': '16px',
'line-height': 1.25
}
}
}
}AT-RULES
todo
@responsive {breakpointQuery} {block}
EXAMPLE:
@responsive desktop_md {
display: none;
}
@responsive <=ipad_portrait {
color: red;
}@color {fg/bg/stroke/fill/border/border-[top|bottom|left|right]} {colorName/hex}
Tries to get colorName from theme.colors, otherwise passes the color through
EXAMPLE:
h2 {
@color fg headings.h2;
@color bg transparent;
}@grid
Sets column gap to your gutter configuration across all breakpoints.
EXAMPLE:
.my-grid {
@grid;
grid-template-areas: "a b"
"a c";
grid-template-columns: 6fr 6fr;
.a {
grid-area: a;
}
.b {
grid-area: b;
}
.c {
grid-area: c;
}
}This creates a 6 columns wide stacking grid.
@display [displayType[/flexDirection][/flexWrap]] [breakpointQuery]
Add shortcut for responsive display decls.
EXAMPLE:
article {
@display flex $mobile;
}
article {
@display flex/row/wrap $mobile;
}@order {orderNumber} [breakpointQuery]
Add shortcut for responsive order decls.
EXAMPLE:
article {
@order 1 $mobile;
}`@embed-responsive {aspectRatio}
PARAMS:
{aspectRatio}
- 16/9
@space {decl} {sizeQuery} [breakpointQuery]
PARAMS:
{decl}
container(does not acceptsizeQuery, only[breakpointQuery])margin-x,margin-y,padding-x,padding-ytranslateX,translateY,translateZ,scale- Any prop that accepts the values you give it.
{sizeQuery}
xs> Gets XS fromtheme.spacingmap.-xs> Gets negative value of XS fromtheme.spacingmap.2> Gets2times the gutter padding.1/3> Calcs a fraction.3:1/6> Calcs a 3/6 fraction but with 1 added gutter unitxs/2> Gets half of the XS fromtheme.spacingmap.between(20px-50px)> Scales the value from 20px at the start of breakpoint to 50px at the end of breakpoint.container> Gets value fromtheme.container.paddingfor breakpoint.-container> Gets negative value oftheme.container.paddingfor breakpoint.vertical-rhythm(theme.typography.sizes.xl)> Grabs object for breakpoint and multiplies with default line-height.vertical-rhythm(theme.typography.sizes.xl, 1.2)> Grabs object for breakpoint and multiplies with 1.2 as line-height.calc(100vw - var[container] + var[1])> Switches outvar[container]andvar[1]with correct values for container padding and 1 gutter unit per breakpoint.20dpx> Design pixel units that scale with viewport width based on thedpxViewportSizesetting (defaults to 1440px).
EXAMPLES:
.block {
@space margin-y xl/2;
&:first-of-type {
@space margin-top xl;
}
&:last-of-type {
@space margin-bottom: xl;
}
}
.overlap {
/* Use negative named spacing to create overlaps */
@space margin-top -block;
}
.powerful-stuff {
/* move element 4 columns + a gutter size to the left */
@space translateX calc(var[4:1/12] * -1);
}If you need the set properties to be marked as !important you can use @space!
@space! margin-left xs;@font {fontFamily} [fsQuery]
Selects a font family. Can also be passed a font size query.
PARAMS:
{fontFamily}
- picks
fontFamilyfromtypography.families
[fsQuery]
- can also be passed. Will then create a
@fontsizerule withfsQueryas params
@fontsize {fsQuery} [breakpointQuery]
PARAMS:
{fsQuery}
lg> Picks thelgkey fromtheme.typography.sizesacross breakpointslg/2.0> Also setsline-heightto2.0lg(2.0)/2.0> Adds a modifier(2.0)that gets used as a multiplier in a calc() for the final font-size.between(18px-22px)> Responsive font sizing, from 18px to 22px. Needs a breakpoint to function properly.product.size> Traverses the keypathproduct.sizewithintheme.typography.sizes20dpx> Design pixel units that scale with viewport width based on thedpxViewportSizesetting (defaults to 1440px)
[breakpointQuery]
xs> Only for thexsbreakpoint>=md> Only for larger or equal tomd
ease() function
Provides easing functions as CSS cubic-bezier values. This function can be used in any CSS property that accepts transition-timing-function values.
PARAMS:
type
- Standard:
ease,ease.in,ease.out,ease.inOut - Sine:
sine.in,sine.out,sine.inOut - Quad:
quad.in,quad.out,quad.inOut - Cubic:
cubic.in,cubic.out,cubic.inOut - Quart:
quart.in,quart.out,quart.inOut - Quint:
quint.in,quint.out,quint.inOut - Expo:
expo.in,expo.out,expo.inOut - Circ:
circ.in,circ.out,circ.inOut - Back:
back.in,back.out,back.inOut - Power1-4:
power1.in,power1.out,power1.inOutthroughpower4.in,power4.out,power4.inOut
EXAMPLES:
.element {
transition: transform 300ms ease('power3.out');
}
.another-element {
transition: opacity 500ms ease('sine.inOut'), transform 800ms ease('back.out');
}Note: If an invalid easing name is provided, an error will be thrown during CSS processing.
@if {value} {block}
Renders {block} if {value} is true. Ignores it otherwise.
PARAMS:
{value}
theme.typography.optimizeLegibility> Checks value in theme config.
EXAMPLES:
@if theme.typography.optimizeLegibility {
article {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
}@column {sizeQuery} [breakpointQuery]
Creates a flex column inside rule.
PARAMS:
{sizeQuery}
1/3> Takes up one third of container, across all breakpoints3:1/6> Takes up one third of container, across all breakpoints, with 1 unit of guttercalc(var[container] + var[6/12])> 6/12 columns + width of container gutter
[breakpointQuery]
xs> For xs breakpoint onlyxs/sm/xl> For xs, sm and xl breakpoints<=md> Less and equal to the md breakpoint
EXAMPLES:
article {
@column 1/3;
@column 3/3 xs;
}
/* Column is 1/3 wide on all devices, except xs, which is 3/3. */@iterate {iterable} block
Iterates through a config object.
PARAMS:
{iterable}
- a path in the theme.object, I.E
theme.header.padding.small
EXAMPLES:
article {
@iterate theme.header.padding.small {
@responsive $key {
padding-top: $value;
padding-bottom: $value;
}
}
}This creates a media query for each key in theme.header.padding.small
@unpack {object}
Unpacks a config object.
PARAMS:
{object}
- a path in the theme object, I.E
theme.typography.sections.navigation
EXAMPLES:
article {
@unpack theme.typography.sections.navigation;
}results in
@media (min-size: 0) and (max-size: 749px) {
article {
font-size: 1.2rem;
line-height: 1.6;
}
}
@media (min-size: 750px) and (max-size: 1039px) {
article {
font-size: 1.4rem;
line-height: 1.5;
}
}
/* ... */POSTCSS PLUGINS IN USE
This would not be possible without the following great plugins:
postcss-extend-rulepostcss-functionspostcss-nestedpostcss-preset-envpostcss-combine-duplicated-selectorspostcss-nesting
9 months ago
9 months ago
9 months ago
9 months ago
10 months ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago