1.0.41 • Published 2 years ago

@preamp-release-test/mixer v1.0.41

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

PreAmp Mixer

PreAmp Mixer is VideoAmp's CSS framework.

Structure

Mixer is broken into the following partial groups:

  • Helpers
  • Base
  • Components
  • Utilities

Helpers includes helper styles such as colors, variables, mixins, functions, themes, typography and layout.

Base contains styles for base HTML elements.

Components contain styles for the PreAmp Core component library.

Utilities includes utility styles for animations, Tailwind utilities, etc.

Theming and Functional Classes

Mixer uses Tailwind to extend functional classes, making styling easy, clean and consistent. It also helps drive theming using CSS Custom Properties.

Themes are set up in the themes partial by modifying CSS custom property values scoped to a selector. For example .va-dark contains values for custom properties that override the values assigned to the :root level. Therefore, using the theme would require the addition of that theme's className added to the HTML element. A theme does not have to include overrides for all of the CSS custom property values, but any values not included will fall back to the defaults assigned to :root.

CSS Custom Properties vs SASS Variables

The Tailwind framework requires the use of CSS Custom Properties to incorporate the property values in Javascript. One thing to note is that CSS Custom Properties are not interchangeable with SASS variables. Custom Properties are runtime variables, so when SASS is compiled, they have no value. That means that they cannot be used as values for SASS variables, functions or mixins.

Functional Classes

Tailwind creates functional CSS classes that can be used for styling, however it is not recommended that they be used directly in HTML markup. Instead you can extend these classes in your SASS files:

.va-btn {
    @apply rounded py-2 px-4 font-normal text-va-button border-transparent border-2;
}

For more information on functional classes, visit the Tailwind documentation

Helper Styles

Color

The color palette and functionality are based on concepts from react-md.

Sass variables for each color are created from a function and can be used as va-palette("COLOR", "HUE"), or a specific example would be va-palette("blue", "400").

There are also CSS Custom Properties available for each color. They can be used as var(--va-blue-400).

A full list of the available colors can be found in the colors partial.

Typography

Typography styles can be applied with the following classes, the default sizes are listed for reference:

classNamefont-size
.u-title-1font-size: 3.25rem (52px)
.u-title-2font-size: 2rem (32px)
.u-title-3font-size: 1.25rem (20px)
.u-title-4font-size: 1.125rem (18px)
.u-title-5font-size: 1rem (16px)
.u-body-1font-size: 0.875rem (14px)
.u-body-2font-size: 0.75rem (12px)
.u-body-3font-size: 0.625rem (10px)
.u-body-4font-size: 0.5625rem (9px)

The default sizes of these helper classes can be changed using themes.

Font-weight helper classes

classNamefont-weight
.u-font-thinfont-weight: 200
.u-font-lightfont-weight: 300
.u-font-normalfont-weight: 400
.u-font-mediumfont-weight: 500
.u-font-boldfont-weight: 700

Grid Layout

The Mixer grid layout is following and extending the Tailwind framework with some influence by Bootstrap's conventions. The grid is based on a 12 column grid using CSS Grid. The grid container must have the following classNames applied va-grid and either va-columns-default or va-columns-fluid.

va-columns-default applies the 12 column grid that requires either 12 child elements, or fewer than 12 columns with the class col-span-${n} where the ${n} are numbers that add up to 12.

va-columns-fluid allows you to have however many child elements you want and they will all equally fill the space.

Usage Example

A container div with the class va-row is required for the columns to work correctly. Only columns should be direct childeren of rows.

<div className='va-grid va-columns-default'>
    <div className='col-span-12'>Full Width Column</div>
</div>
<div className='va-grid va-columns-default'>
    <div className='col-span-6'>50% Width Column</div>
    <div className='col-span-6'>50% Width Column</div>
</div>
<div className='va-grid va-columns-fluid'>
    <div>These columns</div>
    <div>Fill the space</div>
    <div>Evenly</div>
</div>

Gutters

By default the columns will have gutter spacing between them. The size of the gutter is configurable in the themes partial (1.5rem or 24px by default). To remove the spacing, add the class no-gutters to the container element. For example:

<div className="va-grid va-columns-default no-gutters">
    <div className="col-span-9">75% Width Column</div>
    <div className="col-span-3">25% Width Column</div>
</div>

Responsive

Media queries follow the screen specifications set up in the Tailwind framework as sm md lg and xl. Including them as part of the class names will apply them based on minimum width, so they will apply to that breakpoint and all above it.

smmdlgxl
Breakpoint576px768px992px1200px
Class prefix.col-span-sm-.col-span-md.col-span-lg.col-span-xl

For example, the following class additions:

<div className="va-grid va-columns-default">
    <div className="col-span-sm-12 col-span-md-6 col-span-lg-3">
        Column Content
    </div>
</div>

Will adaptively render as the following:

Browser SizeColumn Width
sm breakpoint to md breakpoint100% (applies col-span-sm-12)
md breakpoint to lg breakpoint50% (applies col-span-md-6)
lg breakpoint and above25% (applies col-span-lg-3)

Utilities

Utility classes to assist in visual display and layout.

classNamepurpose
.va-sr-onlyOnly display content to screen readers
.va-sr-only-focusableUse with .va-sr-only to display screen reader content when it's focused

Text inside the anchor will only be available to screenreaders and hidden from view.

<a href="#">
    <span className="va-sr-only">Offscreen text</span>
</a>

Skip content link that is hidden from view but shown when it's focused.

<a href="#main-content">
    <span className="va-sr-only va-sr-only-focusable">
        Skip to main content
    </span>
</a>

Publishing

Publishes dist/ to https://www.npmjs.com/package/@preamp/mixer

npm publish --access public

Linking packages

For development in PreAmp, Mixer must be linked to the root directory in order for styles to be imported into documentation pages.

# Navigate to mixer and yarn link it

$ cd packages/mixer
$ yarn link

# Navigate back to root and link mixer

$ cd ../..
$ yarn link "@preamp/mixer"

For development in other applications, be sure to build the package of Mixer before linking.

# Navigate to mixer, build and create a link

$ cd packages/mixer
$ yarn build
$ yarn link