├── assets └── images │ └── bulma-customizer-banner.png ├── README.md └── .gitignore /assets/images/bulma-customizer-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmasterish/bulma-customizer/HEAD/assets/images/bulma-customizer-banner.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Bulma Customizer](https://bulma-customizer.bstash.io/) 2 | 3 | Create your own **bespoke** Bulma build. 4 | 5 | [![Bulma Customizer – Create your own bespoke Bulma build](https://raw.githubusercontent.com/bstashio/bulma-customizer/master/assets/images/bulma-customizer-banner.png)](https://bulma-customizer.bstash.io/) 6 | 7 | A WIP, PWA, unofficial online build generator of the [Bulma CSS framework](http://bulma.io), 8 | that was inspired by [Bootstrap Customize](https://getbootstrap.com/customize/). 9 | 10 | Currently, the code is not ready for public sharing, so this repo will simply 11 | be used for sharing ideas of how this could be further developed. It also acts as the go-to place to propose extensions and the like; so if you happen to know one that hasn't been included in [Bulma Customizer](https://bulma-customizer.bstash.io/), feel free to open an issue and provide relevant details. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ############################################################################## 2 | # GENERIC FILES TO IGNORE 3 | # ############################################################################## 4 | 5 | # ------------------------------------------------------------------------------ 6 | # Linux 7 | # ------------------------------------------------------------------------------ 8 | *~ 9 | .Trash-* 10 | 11 | # ------------------------------------------------------------------------------ 12 | # OSX 13 | # ------------------------------------------------------------------------------ 14 | *.DS_Store 15 | ._* 16 | 17 | # ------------------------------------------------------------------------------ 18 | # Windows 19 | # ------------------------------------------------------------------------------ 20 | Desktop.ini 21 | Thumbs.db 22 | 23 | # ------------------------------------------------------------------------------ 24 | # SVN 25 | # ------------------------------------------------------------------------------ 26 | .svn/ 27 | 28 | # ------------------------------------------------------------------------------ 29 | # Log files and databases 30 | # ------------------------------------------------------------------------------ 31 | *.log 32 | *.sql 33 | *.sqlite 34 | 35 | # ------------------------------------------------------------------------------ 36 | # CSS pre-processors 37 | # ------------------------------------------------------------------------------ 38 | *.sass-cache* 39 | 40 | # ------------------------------------------------------------------------------ 41 | # Misc 42 | # ------------------------------------------------------------------------------ 43 | 44 | # ignore any file or folder that starts with double underscore 45 | __* 46 | 47 | # ------------------------------------------------------------------------------ 48 | # Packages such as Zip files 49 | # ------------------------------------------------------------------------------ 50 | *.7z 51 | *.dmg 52 | *.gz 53 | *.iso 54 | *.rar 55 | *.tar 56 | *.zip 57 | --------------------------------------------------------------------------------