12 | ```
13 | */
14 |
15 | .frameStandard {
16 | padding: 8px;
17 | }
18 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Example hologram style guide
2 |
3 | This is an example project that uses
4 | [hologram](http://trulia.github.io/hologram) to build [this style
5 | guide](http://trulia.github.io/hologram-example). In order to build the
6 | style guide yourself, run the following:
7 |
8 | gem install hologram
9 | cd hologram-example
10 | hologram config.yml
11 |
12 | **Nota Bene:** This example uses jQuery loaded from a CDN to build a simple menu navigation. You'll need to run a local server to see this menu in action.
13 |
14 | # License
15 |
16 | Like hologram itself, this example is licensed under the MIT license.
17 |
--------------------------------------------------------------------------------
/components/badge/badge.css:
--------------------------------------------------------------------------------
1 | /*doc
2 | ---
3 | title: Badges
4 | name: badge
5 | category: Components
6 | ---
7 |
8 | Badges are a way to display a small amount of text or an image within a
9 | nicely formatted box.
10 |
11 | */
12 | .badgeStandard, .badgePrimary, .badgeSecondary {
13 | -webkit-border-radius: 3px;
14 | -moz-border-radius: 3px;
15 | -ms-border-radius: 3px;
16 | -o-border-radius: 3px;
17 | border-radius: 3px;
18 | font-size: 12px;
19 | font-size: 0.75rem;
20 | padding: 0.35714em 0.42857em 0.21429em;
21 | display: inline-block;
22 | color: white;
23 | line-height: 1;
24 | text-transform: uppercase;
25 | }
26 |
--------------------------------------------------------------------------------
/components/frame/skin/frameSmall.css:
--------------------------------------------------------------------------------
1 | /*doc
2 | ---
3 | parent: frame
4 | title: Small Frame
5 | name: frameSmall
6 | ---
7 |
8 | A small frame using the `.polaroid` class to include some text along with the image. Note the use of the inline style to set the width.
9 | This is one of the only places where that is acceptable...
10 |
11 | ```html_example
12 |