Skip to content

Commit

Permalink
Merge pull request nostalgic-css#46 from Baldomo/fix-readme
Browse files Browse the repository at this point in the history
README English translation
  • Loading branch information
BcRikko authored Dec 1, 2018
2 parents 377e083 + 7baf17b commit 1e239a3
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 29 deletions.
99 changes: 99 additions & 0 deletions README-jp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<div align="center">
<a href="https://bcrikko.github.io/NES.css/" target="_blank"><img src="https://user-images.githubusercontent.com/5305599/49061716-da649680-f254-11e8-9a89-d95a7407ec6a.png" alt="NES.css: NES-style CSS framework" style="max-width:100%;" width="600" height="315"></a>

<a href="README.md">English</a> / <a href="README-jp.md">日本語</a>
</div>

NES.cssは **ファミコン風(8bit ライク)** なCSSフレームワークです。


## Install

### CDN

```html
<!-- minify -->
<link href="https://unpkg.com/nes.css@0.0.2/css/nes.min.css" rel="stylesheet" />
<!-- latest -->
<link href="https://unpkg.com/nes.css/css/nes.min.css" rel="stylesheet" />
```

OR

```html
<!-- non-minified -->
<link href="https://unpkg.com/nes.css@0.0.2/css/nes.css" rel="stylesheet" />
<!-- latest -->
<link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />
```

### npm

TODO: npm での使用方法を書く


## Usage

NES.cssはコンポーネントのスタイルのみを提供しています。レイアウトはみなさんが好きなように定義してください。

デフォルトでは`Press Start 2P`フォントを使っています。英語以外(日本語など)で利用される場合は、別途フォントを読み込んで使ってください。

TODO: 詳細を書く


## CSS Only

NES.cssはCSSのみで構成されています。JavaScriptは不要です。


## Browser Support

次のブラウザの最新バージョンをサポートしています。

* Chrome
* Firefox
* Safari

未確認
* IE/Edge


## Development

### Commands
```sh
git clone git@github.com:BcRikko/NES.css.git
cd NES.css

npm i

npm run watch
npm run build
```

pre-commit hookにより、コミット時に自動でLint→format→buildが走り、`css`ディレクトリにファイルが出力されます。
TODO: ビルドはCIでするように変更したい

### Directories
```sh
.
├── index.html: Demo page
├── style.css: Demo page style
├── css: Distribution files
└── scss: Source
├── base
│ ├── reboot.scss: Don't change! (Bootstrap Reboot)
│ ├── generic.scss: Generic style and reboot.css
│ └── variables.scss: Common variables
├── elements
├── form
├── icons: 16x16 icons
├── pixel-arts: For icons other than 16x16.
└── utilities
```
## Copyright and license
Code and documentation copyright 2018 [B.C.Rikko](https://github.com/BcRikko). Code released under the MIT License. Docs released under Creative Commons.
46 changes: 17 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<div align="center">
<a href="https://bcrikko.github.io/NES.css/" target="_blank"><img src="https://user-images.githubusercontent.com/5305599/49061716-da649680-f254-11e8-9a89-d95a7407ec6a.png" alt="NES.css: NES-style CSS framework" style="max-width:100%;" width="600" height="315"></a>

<a href="README.md">English</a> / <a href="README.md">日本語</a>
<a href="README.md">English</a> / <a href="README-jp.md">日本語</a>
</div>

NES.css is a **NES-style(8bit-like)** CSS Framework.
NES.cssは **ファミコン風(8bit ライク)** なCSSフレームワークです。
NES.css is a **NES-style(8bit-like)** CSS Framework.


## Install
Expand Down Expand Up @@ -38,33 +37,22 @@ NES.css only provides components. You will need to define your own layout.

The default font is Press Start 2P which only supports English characters. When you're using this framework with any language except English, please use another font.

NES.cssはコンポーネントのスタイルのみを提供しています。レイアウトはみなさんが好きなように定義してください。

デフォルトでは`Press Start 2P`フォントを使っています。英語以外(日本語など)で利用される場合は、別途フォントを読み込んで使ってください。

TODO: 詳細を書く


## CSS Only

NES.css only requires CSS and doesn't depend on any JavaScript.

NES.cssはCSSのみで構成されています。JavaScriptは不要です。


## Browser Support

NES.css is compatible with the newest version of the following browsers.

次のブラウザの最新バージョンをサポートしています。

* Chrome
* Firefox
* Safari

Untested

未確認
* IE/Edge


Expand All @@ -81,25 +69,25 @@ npm run watch
npm run build
```

pre-commit hookにより、コミット時に自動でLint→format→buildが走り、`css`ディレクトリにファイルが出力されます。
Linting, formatting and building runs automatically in the pre-commit hook.
TODO: ビルドはCIでするように変更したい

### Directories
```
```sh
.
|- index.html: Demo page
|- style.css: Demo page style
|- css: Distribution files
|- scss: Source
|- base
| |- reboot.scss: **Don't change!** (Bootstrap Reboot)
| |- generic.scss: Generic style and overwrite reboot.css
| |- variables.scss: Common variables
|- elements
|- form
|- icons: For 16x16 icon
|- pixel-arts: For icon other than 16x16 icon.
|- utilities
├── index.html: Demo page
├── style.css: Demo page style
├── css: Distribution files
└── scss: Source
├── base
├── reboot.scss: Don't change! (Bootstrap Reboot)
├── generic.scss: Generic style and reboot.css
└── variables.scss: Common variables
├── elements
├── form
├── icons: 16x16 icons
├── pixel-arts: For icons other than 16x16.
└── utilities
```
Expand Down

0 comments on commit 1e239a3

Please sign in to comment.