# Primer box [![npm version](https://img.shields.io/npm/v/primer-box.svg)](https://www.npmjs.org/package/primer-box) [![Build Status](https://travis-ci.org/primer/primer.svg?branch=master)](https://travis-ci.org/primer/primer) > Box is a module for creating rounded-corner boxes with a white background and gray borders. Box has optional element styles for headers, lists, and footers. This repository is a module of the full [primer][primer] repository. ## Install This repository is distributed with [npm][npm]. After [installing npm][install-npm], you can install `primer-box` with this command. ``` $ npm install --save primer-box ``` ## Usage The source files included are written in [Sass][sass] (`scss`) You can simply point your sass `include-path` at your `node_modules` directory and import it like this. ```scss @import "primer-box/index.scss"; ``` You can also import specific portions of the module by importing those partials from the `/lib/` folder. _Make sure you import any requirements along with the modules._ ## Build For a compiled **css** version of this module, a npm script is included that will output a css version to `build/build.css` The built css file is also included in the npm package. ``` $ npm run build ``` ## Documentation The `.Box` component can be used for something as simple as a rounded corner box, or more complex lists and forms. It includes optional modifiers for padding density and color themes. {:toc} ## Box A `.Box` is a container with a a white background, a light gray border, and rounded corners. By default there are no additional styles such as padding, these can be added as needed with utility classes. Other styles and layouts can be achieved with box elements and modifiers shown in the documentation below. ```html
This is a box.
``` ## Box elements Box elements include `Box-header`, `Box-body`, and `Box-footer`. These elements include borders and consistent padding. Optionally, you can include use `Box-title` which applies a bold font-weight the heading. ```html

Box title

Box body
``` ### Box row Use `Box-row` to add rows with borders and maintain the same padding. Box rows have a lighter border to give contrast between the header and footer. **Note:** Box rows have some reliance on markup structure in order to target the first and last rows, therefore using an unordered list is recommended. See [box row markup structure](#box-row-markup-structure) for more information. ```html
``` Rows can be used with or without `Box-header`, `Box-footer`, or `Box-body`. ```html
Box header
Box body
``` ### Box row markup structure Box rows have some reliance on markup structure in order to target the first and last rows. Box rows are given a top border that is lighter in color than other box elements so the first row is targeted to apply a darker border color. An inner border-radius is applied to the first and last rows that that row corners don't poke outside the `Box`, this can be particularly noticeable when using a highlight on box rows. Using an unordered list is recommended in order to target the first and last rows, however, if you need to use a `
` for your rows, you may want to place your rows inside a parent `
` so that the first and last rows are styled appropriately. ```html
Box header
Box row using a div
Box row using a div
``` ## Box padding density You can changed the padding density of the box component. Use `Box--condensed` to apply a more condensed line-height and reduce the padding on the Y axis. ```html

Box title

Box body
  • Box row one
  • Box row two
``` Use `Box--spacious` to increase padding and increase the title font size. You may want to increase the overall font size to work with the larger padding, in this example the default body font size is increased to 16px using the `f4` typography utility. ```html

Box title

Box body
  • Box row one
  • Box row two
``` ## Blue box theme Use `Box--blue` to style the box borders and box header in blue. ```html
Box header
  • Box row one
  • Box row two
``` ## Blue box header theme Use `Box-header--blue` to add to change the header border and background to blue. ```html

Box with blue header

Box body
``` ## Box danger theme Use `Box--danger` to apply a red border to the outside of the box. This theme is helpful for communicating destructive actions. **Note:** `Box-danger` only works with either `Box-row`'s or `Box-body`. ```html
Row one
Row two
``` `Box-danger` is often paired with a red heading. See the [subhead](../subhead) docs for more information. ```html

Danger zone

Box body
``` ## Row themes You can change the background color for individual rows, or change the color on hover or navigation focus. ```html
.Box-row--gray
.Box-row--hover-gray
.Box-row--yellow
.Box-row--hover-blue
.Box-row--blue
``` Use `Box-row--focus-gray` or `Box-row--focus-blue` when using along-side `navigation-focus` if you want to highlight rows when using keyboard commands. ```html
.Box-row--focus-gray
.Box-row--focus-blue
``` ### Box row unread Use `.Box-row-unread` to apply a blue vertical line highlight for indicating a row contains unread items. ```html
Box row
Box row unread
Box row
``` ### Box row link Use .`Box-row-link` when you want a link to appear dark gray and blue on hover on desktop, and remain a blue link on mobile. This is useful to indicate links on mobile without having hover styles. ```html ``` ## Dashed border Use the `border-dashed` utility to apply a dashed border to a box. ```html
A box with a dashed border
``` ## Boxes with flash alerts Use `flash-full` for flash alert inside a box to remove the rounded corners. Place the flash alert above the `Box-body` and underneath the `Box-header`. Flash alerts come in three different colors and can be used with icons and buttons, see the [alert documentation](../alerts) for more information. ```html
Box header
Flash message with close button.
<%= octicon("check") %> Flash success with an icon.
<%= octicon("alert") %> Flash warning with an icon.
Flash error inside a Box.
Box body
``` ## Boxes with icons Use `Box-btn-octicon` with `btn-octicon` when you want the icon to maintain the same padding as other box elements. This selector offsets margin to ensure it lines up on the left and right sides of the box so you may need to add padding neighboring elements. ```html
Box body
``` It's common to want to float icons to the far left or right and stop the `Box-title`from wrapping underneath. To do this you'll need to create a media object with utilities. Add `clearfix` to the surrounding div (this could be the header, body, or rows), add `overflow-hidden` to the title (or other text element), and float the icons as desired. ```html

A very long title that wraps onto multiple lines without overlapping or wrapping underneath the icon to it's right

Box body
``` ```html

A very long paragraph that wraps onto multiple lines without overlapping or wrapping underneath the icon to it's left

``` ## Box headers with counters Use a counter with a background that works against the contrast of the box header. The default counter colors do not stand out well against the header background so we suggest using one of the following styles: Use `Counter--gray` for a counter with a gray background and dark gray text. ```html

Box title 12

Box body
``` Use `Counter--gray-dark` for a counter with a dark gray background and white text. ```html

Box title 12

Box body
``` ## Form elements and buttons in boxes To achieve different layouts when adding buttons or form elements to boxes we suggest you use utilities to achieve the layout you want. Here's some common examples: Use [flexbox utilities](../../utilities/flexbox) to center align items, and avoid using floats by using `flex-auto` to have the text fill the remaining space so that the button rests on the far right. ```html

Box title

Box body
``` A similar approach can be used for buttons with multiple lines of text within a row. ```html
Row title
Description
Row title
Description
Row title
Description
``` Using flexbox along with form, button, and link styles, you can create more complex box headers for things like bulk actions and sorting. ```html
Box body
``` You can put forms in boxes. Often form submission buttons are aligned to the bottom right of the form which you can do with `text-right` instead of using floats. ```html

Example form title

``` When a box is all by itself centered on a page you can use [column widths](../../objects/grid) to control the width of the box. If needed, break the mold a little and use [typography utilities](../../utilities/typography) instead of the built in box title styles. ```html

Example form

``` Box patterns can also be made with, and modified with [border utilities](../../utilities/borders). ## License [MIT](./LICENSE) © [GitHub](https://github.com/) [primer]: https://github.com/primer/primer [docs]: http://primer.github.io/ [npm]: https://www.npmjs.com/ [install-npm]: https://docs.npmjs.com/getting-started/installing-node [sass]: http://sass-lang.com/