https://github.com/pglejzer/bootstrap-just-css
Simple CSS package with the latest version of Bootstrap
https://github.com/pglejzer/bootstrap-just-css
bootstrap css frontend mdb mdbootstrap
Last synced: about 1 month ago
JSON representation
Simple CSS package with the latest version of Bootstrap
- Host: GitHub
- URL: https://github.com/pglejzer/bootstrap-just-css
- Owner: pglejzer
- License: mit
- Created: 2020-01-23T16:35:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-23T21:34:02.000Z (over 6 years ago)
- Last Synced: 2025-09-18T08:26:49.491Z (9 months ago)
- Topics: bootstrap, css, frontend, mdb, mdbootstrap
- Homepage: https://getbootstrap.com/
- Size: 651 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bootstrap just CSS
It's a simple package with [Bootstrap](https://getbootstrap.com/) styles only. If you don't want a use whole [Bootstrap](https://getbootstrap.com/) library and if you need just a css styles this package is perfect for you.
## Installation:
#### npm
```bash
npm install bootstrap-just-css
```
#### npx
```bash
npx bootstrap-just-css
```
_(npx is a package runner tool that comes with npm 5.2+ and higher)_
#### Yarn
```bash
yarn add bootstrap-just-css
```
### Versions
You can install selected Bootstrap version.
```bash
yarn add bootstrap-just-css@2.3.2
npm install bootstrap-just-css@4.3.1
```
## Usage:
After installation you have to import selected css files.
### Bootstrap v.2.3.2+
```bash
import 'bootstrap-just-css/css/bootstrap.css'
import 'bootstrap-just-css/css/bootstrap.min.css'
import 'bootstrap-just-css/css/bootstrap-responsive.css'
import 'bootstrap-just-css/css/bootstrap-responsive.min.css'
...
```
### Bootstrap v.3.3.7+
```bash
import 'bootstrap-just-css/css/bootstrap.css'
import 'bootstrap-just-css/css/bootstrap.min.css'
import 'bootstrap-just-css/css/bootstrap-theme.css'
import 'bootstrap-just-css/css/bootstrap-theme.min.css'
...
```
### Bootstrap v.4.0.0+
```bash
import 'bootstrap-just-css/css/bootstrap.css'
import 'bootstrap-just-css/css/bootstrap.min.css'
import 'bootstrap-just-css/css/bootstrap-grid.css'
import 'bootstrap-just-css/css/bootstrap-grid.min.css'
import 'bootstrap-just-css/css/bootstrap-reboot.css'
import 'bootstrap-just-css/css/bootstrap-reboot.min.css'
...
```
## License:
This package is open source software licensed as MIT and used [MIT license](https://github.com/twbs/bootstrap/blob/v4.4.1/LICENSE) from Bootstrap.