-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[![npm version](https://img.shields.io/npm/v/@nasa-jpl/stellar.svg)](https://www.npmjs.com/package/@nasa-jpl/stellar) | ||
|
||
# Stellar | ||
|
||
A CSS implementation of the Stellar design system for spacecraft operation tools. | ||
|
||
## Install | ||
|
||
```sh | ||
npm install @nasa-jpl/stellar --save | ||
``` | ||
|
||
## Usage | ||
|
||
Import the desired CSS files into your project to make the classes globally available. See our [example project][stellar-example] for detailed API usage. | ||
|
||
```html | ||
<html> | ||
<head> | ||
<link href="@nasa-jpl/stellar/dist/css/button.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<button class="st-button">Stellar!</button> | ||
</body> | ||
</html> | ||
``` | ||
|
||
## License | ||
|
||
The scripts and documentation in this project are released under the [MIT License](LICENSE). | ||
|
||
[stellar-example]: https://nasa-jpl.github.io/stellar/example/ |