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
- Host: GitHub
- URL: https://github.com/angular-buch/book-monkey5-styles
- Owner: angular-buch
- Created: 2020-08-03T14:33:55.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-11-21T11:59:20.000Z (over 3 years ago)
- Last Synced: 2025-05-16T05:09:13.225Z (about 1 year ago)
- Topics: angular, css
- Language: CSS
- Homepage: https://www.npmjs.com/package/book-monkey5-styles
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
],
/* ... */
}
},
/* ... */
}
}
},
/* ... */
}
```