Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
seek-style-guide
Advanced tools
Living style guide containing the building blocks and design principles for SEEK web applications
Living style guide for SEEK, powered by React, webpack, CSS Modules and Less.
If you're creating a new project from scratch, consider using sku, our officially supported front-end development toolkit. It's specially designed to get your project up and running as quickly as possible, while simplifying the process of keeping your development environment up to date.
If you'd instead like to work on a custom webpack project, you can use seek-style-guide-webpack to streamline the integration process.
$ npm install --save seek-style-guide react react-dom react-helmet
Optionally, if not making use of the React components, you can install seek-style-guide by itself:
$ npm install --save seek-style-guide
Consumers can stay up to date by following our release notes, which are published automatically whenever a new release is published to npm.
Wrap your app with the StyleGuideProvider
component to use any of the style guide components. For example:
import React, { Component } from 'react';
import { StyleGuideProvider } from 'seek-style-guide/react';
export default class App extends Component {
render() {
const locale = 'AU';
const title = '...';
const meta = [{ name: 'description', content: '...' }];
const link = [{ rel: 'canonical', href: 'https://www.seek.com.au/' }];
return (
<StyleGuideProvider locale={locale} title={title} meta={meta} link={link}>
...
</StyleGuideProvider>
);
}
}
StyleGuideProvider
's props are used to set the page head properties using Helmet.
As much as possible, you should aim to minimise the amount of custom CSS you need to write. This is achieved by leveraging our suite of high level components, which are demonstrated on our style guide documentation site.
For more advanced pages, if you need to drop down into Less, the style guide provides a set of mixins and variables to make it easier to stay on brand.
In any style sheet that depends on the style guide, first import the Less theme by reference.
@import (reference) '~seek-style-guide/theme';
The style guide exposes one responsive breakpoint:
@responsive-breakpoint: 740px;
Content should otherwise be responsive within its container. The set of included components follow this model internally if you'd like to get a sense of what this looks like in practice.
As much as possible, colors should be directly imported from the style guide.
The following colors are provided:
// Brand colors
@sk-blue-darker;
@sk-blue-dark;
@sk-blue;
@sk-blue-light;
@sk-blue-lighter;
@sk-pink;
@sk-green;
@sk-green-light;
@sk-purple;
@sk-teal;
@sk-orange;
@sk-yellow;
@sk-yellow-light;
// Partner brand colors
@sk-business;
@sk-volunteer;
@sk-learning-light;
@sk-learning-medium;
@sk-learning-dark;
// Grays
@sk-black;
@sk-charcoal;
@sk-mid-gray-dark;
@sk-mid-gray-medium;
@sk-mid-gray;
@sk-mid-gray-light;
@sk-gray-light;
@sk-gray-lightest;
@sk-off-white;
@sk-white;
// Element colors
@sk-link;
@sk-link-visited;
@sk-focus;
@sk-footer;
@sk-background;
@sk-form-accent;
@sk-positive-light;
@sk-positive;
@sk-info-light;
@sk-info;
@sk-critical-light;
@sk-critical;
@sk-help-light;
@sk-help;
To ensure correct relative elements stacking order, z-index variables are provided:
@z-index-header-overlay;
@z-index-header;
@z-index-page-overlay;
@z-index-inline-overlay;
@z-index-negative;
The contrast ratio of certain foreground/background color combinations don't meet the AA accessibility standards that we aim for. As a result, a suite of accessible variants have been provided:
@sk-mid-gray-on-white;
@sk-pink-on-gray-light;
@sk-learning-dark-on-gray-light;
@sk-business-on-gray-light;
@sk-link-on-mid-gray-light;
@sk-mid-gray-dark-on-gray-light;
Please note that this list is not exhaustive, so contributions are encouraged. To validate color combinations, we recommend the use of the web-based tool Accessible Colors by @moroshko.
In order to ensure elements correctly follow the grid, element sizing should always be controlled by the following variables:
@row-height;
@gutter-width;
@column-width;
@container-width;
When defining a document content container:
.element {
max-width: @container-width;
}
When defining heights and vertical padding/margins:
.element {
height: (@row-height * 3);
padding-bottom: @row-height;
margin-bottom: @row-height;
}
When defining widths and horizontal padding/margins:
.element {
width: (@column-width * 3);
padding-right: @gutter-width;
margin-right: @column-width;
}
It's important to note that any additions to these values (e.g. borders) will need to be negated to maintain rhythm:
.element {
@border-width: 1px;
border-bottom: @border-width solid @sk-charcoal;
padding-bottom: @row-height - @border-width;
}
Note: If you're using sku, this plugin is already enabled.
In order to help you optimise your bundle size, you can use babel-plugin-seek-style-guide.
$ npm install --save-dev babel-plugin-seek-style-guide
Then, add seek-style-guide
to the plugins list in your Babel config. For example, in .babelrc
:
{
"plugins": ["seek-style-guide"]
}
We've opted to include flow type checking in this project. If you're unfamiliar with static type checking you should start by reading React's overview.
This is completely opt-in and if you've decided not to use type checking in your project then there is nothing you need to do. It shouldn't impact your ability to include the style guide so long as you are using either sku or our webpack decorator.
Conversely, if you would like to opt-in to flow types you'll need to ensure that your .flowconfig
includes a few exclusions and special options.
[ignore]
.*/node_modules/config-chain/.*
.*/node_modules/npmconf/.*
[include]
[libs]
[lints]
[options]
# This is required to prevent errors to less file imports
module.name_mapper.extension='less' -> '<PROJECT_ROOT>/no-declarations.js.flow'
# Good idea to ignore json too
module.name_mapper.extension='json' -> '<PROJECT_ROOT>/no-declarations.js.flow'
no-declarations.js.flow is just an empty file
On every successful build (via npm test
), asketch.json
files (i.e. almost Sketch files) are generated by html-sketchapp containing document styles and symbols. These are provided via the following JSON files:
dist/asketch/document.asketch.json
dist/asketch/page.asketch.json
These can be manually imported into Sketch by downloading html-sketchapp and installing asketch2sketch.sketchplugin
.
Once in Sketch, open the "Plugins" menu and select "From *Almost* Sketch to Sketch". Assuming you've run a full build of the style guide via npm test
, you should now be able to select the asketch.json
files in dist/asketch
.
Refer to CONTRIBUTING.md.
If you're planning to change the public API, please open a new issue and follow the provided RFC template in the GitHub issue template.
MIT.
FAQs
Living style guide containing the building blocks and design principles for SEEK web applications
The npm package seek-style-guide receives a total of 8 weekly downloads. As such, seek-style-guide popularity was classified as not popular.
We found that seek-style-guide demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.