https://github.com/fed/slides-base-css
Base CSS for my slides 🎨
https://github.com/fed/slides-base-css
Last synced: about 1 year ago
JSON representation
Base CSS for my slides 🎨
- Host: GitHub
- URL: https://github.com/fed/slides-base-css
- Owner: fed
- Created: 2018-04-04T20:08:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T21:51:04.000Z (over 7 years ago)
- Last Synced: 2025-04-21T17:46:22.436Z (about 1 year ago)
- Language: CSS
- Homepage: https://npm.im/slides-base-css
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# slides-base-css
These are just a bunch of base css rules for my slides built with [Remarker](https://github.com/kt3k/remarker).
## Add this project as a dependency
```
yarn add slides-base-css
```
## Linking to the base css file
Make sure to include both the base styles and the local css file on your `remarker.yml` config file:
```yml
cssFiles: [
'./node_modules/slides-base-css/style.css',
'./style.css'
]
```
## Customising colours
On your local `style.css` file, you can add custom styles and customise the colour variables by doing:
```css
:root {
--color-clear: #fff;
--color-inverse: #0084ff;
--color-link: #056cc1;
--color-text: #1b1b1b;
}
```