npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ongov/ontario-design-system-global-styles

v4.2.0

Published

Includes the Ontario Design System global styles that are used for more generic elements and layouts, as well as fonts and favicon files.

Downloads

388

Readme

Ontario Design System Global Styles

Introduction

The Ontario Design System global styles package is required to use the Ontario Design System components.

It includes the Ontario Design System global styles that are used for more generic elements and layouts, as well as font assets and favicons.

Installation and usage

To install the Ontario Design System global styles package, run the following command:

npm install --save @ongov/ontario-design-system-global-styles

Using the global styles package

There are two ways to consume the Ontario Design System global styles package:

1. Import everything

You can import the entire global styles package by including the following import statements.

SCSS:

@forward "@ongov/ontario-design-system-global-styles/dist/styles/scss/theme.scss";

CSS:

@forward "@ongov/ontario-design-system-global-styles/dist/styles/css/compiled/ontario-theme.css";

This will give you access to the complete package, and will load in all layers of the project, as defined in our architecture section.

2. Import specific styles

Alternatively, you can be more granular by explicitly importing specific styles from the package instead. Note that this can only be done if using SCSS.

For example, if you only require our global variables, you can include the following @use rule to import specific styles:

@use '@ongov/ontario-design-system-global-styles/dist/styles/scss/1-variables/global.variables' as globalVariables;

The @use rule loads mixins, functions, and variables from other Sass stylesheets, and combines CSS from multiple stylesheets together. In your SCSS, you would then reference one of these variables by including the namespace, followed by the variable you intend to use. For example:

.platform-banner {
	width: globalVariables.$full-width;
	max-width: globalVariables.$full-width;
}

Architecture

For this package, we are using Harry Roberts' Inverted Triangle CSS (ITCSS) method of organizing code. The inverted triangle organizes code along three axes:

  • Generic to explicit
  • Low specificity to high specificity
  • Far-reaching to localized

That means that styles that appear in the beginning of the project tend to be general styles that affect larger pieces of the Design System, while styles that appear later target very specific elements in explicit ways.

In ITCSS, there is a concept of breaking down the CSS into layers, with the top layer holding the most general styles, and the bottom layer holding more specific styles. For the global styles package, we have broken the structure into the following layers:

Variables:

This layer contains all variables that will be used throughought the SCSS partials. For that reason, it needs to be the first partial to be imported into the theme style sheet.

It is worth noting that the values in our variables are using tokens from the Ontario Design Tokens Design Tokens package. Please check that package for more information.

The variables layer holds the following folders for the following variables: breakpoints, colours, font sizes, font weights, global, grid, letter spacing, line heights, spacing, typography and z-index helper variables.

Note: These files should not generate any CSS

Tools:

This layer will include globally available functions, mixins, and placeholders that we use throughout our SCSS partials. These are not specific to one component.

Note: These files should not generate any CSS

Generics:

This layer loads in font-face declarations, any CSS resets, and colours.

Elements:

This layer includes all base HTML elements (such as paragraph elements, headings, anchors, inputs, etc). These only include element-level selectors, not classes or ids.

Layout:

This layer includes styles for non-structured design patterns, such as wrappers, containers, layout systems, typography, and media. Selectors here have one class at most.

Components:

This layer includes design patterns and UI pieces necessary for components. Note that the styles for components in this section are generic. To include specific styles for components, it is better to use the Ontario Design System Component Library or Ontario Design System complete styles packages.

Overrides:

This layer includes helper classes that should override all other patterns for specific behaviours. It currently includes classes for spacing and visibility overrides.

Naming convention

The Ontario Design System global styles package uses the Block Element Modifier (BEM) methodology for naming CSS classes and variables.

BEM allows for developers to see at a glance how classes relate to one another while maintaining the modularity of blocks.

The basic BEM convention goes: .block-name__element-name--modifier-state, with double underscores denoting relationships between elements, and double hyphens indicating variants and states.

  • Blocks are independent components of the page.

    • Example: .ontario-header, .ontario-footer, .ontario-row, etc.
  • Elements are children of blocks. An element can only have one parent block, and can’t be used independently outside of that block.

    • Example: .ontario-fieldset__legend, .ontario-label__flag, etc.
  • A Modifier defines the look, state and behaviour of a block or an element. It contains only additional styles that change the original block implementation in some way. This allows you to set the appearance of a universal block only once, and add only those features that differ from the original block code into the modifier styles.

    • Example: .ontario-input--2-char-width, .ontario-fieldset__legend--heading. etc.

    Support

Contact us at [email protected] for assistance with this package.

References

  • BEM naming convention (http://getbem.com/)
  • SASS compiler (https://sass-lang.com/)
  • ITCSS architecture (https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/)
  • Design Tokens (https://css-tricks.com/what-are-design-tokens/)