An open API service indexing awesome lists of open source software.

https://github.com/angular-buch/book-monkey5-styles

Globales Stylesheet für den BookMonkey 5
https://github.com/angular-buch/book-monkey5-styles

angular css

Last synced: 2 months ago
JSON representation

Globales Stylesheet für den BookMonkey 5

Awesome Lists containing this project

README

          

# book-monkey5-styles

This repository contains the global stylesheet to be used within the example application "BookMonkey5" used in the German [Angular Book](https://angular.buch.com).

> :warning: This CSS Stylesheet is **not** used in the BookMonkey Versions (2-4) of the "Angular Buch".

## Usage

Install the NPM package from the registry:

```bash
npm i --save book-monkey5-styles
```

Then you can import the CSS file via `@import` in your `styles.css` file:

```css
@import 'book-monkey5-styles/styles.css';
```

Alternatively you can include the stylesheet in the Angular build process using via the `angular.json` config file:

```json
{
/* ... */
"projects": {
"book-monkey": {
/* ... */
"architect": {
"build": {
/* ... */
"options": {
/* ... */
"styles": [
"src/styles.css",
"node_modules/book-monkey5-styles/styles.css"
],
/* ... */
},
/* ... */
},
/* ... */
"test": {
/* ... */
"options": {
/* ... */
"styles": [
"src/styles.css",
"node_modules/book-monkey5-styles/styles.css"
],
/* ... */
}
},
/* ... */
}
}
},
/* ... */
}
```