Getting Started
Download the Primed ZIP file from Github by clicking on the button below. Once you have download the ZIP archive, unzip the package.
Download PrimedDirectory Structure
The ZIP archive contains all the source and destination folders, as well as a few necessary project files.
-
dist - the distribution folder that contains all the compiled CSS, JavaScript, and HTML output.
You can use the
primed.css
or minifiedprimed.min.css
file from this folder in your project by linking to it in the<head>
of your HTML document, and placing all your custom CSS in a separate stylesheet. -
src - the source folder that contains all the
scss
files and folders. -
.gitignore - ignore
node_modules
-
gulpfile.js - Gulp script to compile the
scss
source files into CSS, minify CSS and javascript, and copy files to thedist
folder. -
package.json - npm package file to initialize
node_modules
. If you are going to customize this framework by editing the Sass files then you must install the required Node Modules listed as Dev Dependencies in thepackage.json
file.
dist/ ├── css/ │ ├── primed.css │ └── primed.min.css ├── img/ │ └── favicon.ico ├── js/ │ ├── pristine.js │ └── pristine.min.js ├── index.html ├── boilerplate.html src/ ├── copy/ ├── js/ └── scss/ ├── base/ │ ├── _base.scss │ ├── _reset.scss ├── config/ │ ├── _config.scss │ ├── _mixins.scss ├── elements/ │ ├── _buttons.scss │ ├── _forms.scss │ ├── _tables.scss │ ├── _typography.scss ├── utilities/ │ ├── _containers.scss │ ├── _grid.scss │ └── _utilities.scss └── primed.scss .gitignore gulpfile.js LICENSE.md package-lock.json package.json README.md
HTML Starting Point
Begin with a basic HTML5 template that does the following:
- Sets the default language and character set.
- Uses the latest Internet Explorer rendering mode.
- Defines the width of the viewport to enable responsiveness.
- Includes links to the Primed CSS file, and a Favicon.
There is a HTML5 boilerplate starter file included in the Primed dist
folder.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<meta name="description" content="">
<link rel="stylesheet" href="css/primed.css">
<link rel="icon" href="img/favicon.ico">
</head>
<body></body>
</html>
View all HTML5 elements with Primed CSS applied to them.
Browser Support
Primed UI is not designed for old browsers, so I recommend using the latest versions of each browser supported below. However, great effort has been made to support Internet Explorer 11. IE versions below version 11 are not supported.