├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── _config.scss
├── _debug.scss
├── _editor.scss
├── _utilities.scss
├── _vendor.scss
├── _wp-blocks.scss
├── blocks
├── bootstrap
│ ├── _blocks.scss
│ └── _wp-block-columns.scss
├── bulma
│ ├── _blocks.scss
│ ├── _general.scss
│ ├── _wp-block-audio.scss
│ ├── _wp-block-button.scss
│ ├── _wp-block-columns.scss
│ ├── _wp-block-cover.scss
│ ├── _wp-block-embed.scss
│ ├── _wp-block-gallery.scss
│ ├── _wp-block-image.scss
│ ├── _wp-block-media.scss
│ ├── _wp-block-pullquote.scss
│ ├── _wp-block-quote.scss
│ ├── _wp-block-separator.scss
│ └── _wp-block-table.scss
├── tachyons
│ ├── _blocks.scss
│ ├── _dropcap.scss
│ ├── _lists.scss
│ ├── _media.scss
│ ├── _preformatted.scss
│ ├── _wp-block-button.scss
│ ├── _wp-block-columns.scss
│ ├── _wp-block-cover.scss
│ ├── _wp-block-gallery.scss
│ ├── _wp-block-images.scss
│ ├── _wp-block-quote.scss
│ ├── _wp-block-separator.scss
│ └── _wrapper.scss
└── vanilla
│ ├── _blocks.scss
│ ├── _general.scss
│ ├── _wp-block-audio.scss
│ ├── _wp-block-button.scss
│ ├── _wp-block-columns.scss
│ ├── _wp-block-cover.scss
│ ├── _wp-block-embed.scss
│ ├── _wp-block-gallery.scss
│ ├── _wp-block-image.scss
│ ├── _wp-block-media.scss
│ ├── _wp-block-pullquote.scss
│ ├── _wp-block-quote.scss
│ ├── _wp-block-separator.scss
│ └── _wp-block-table.scss
├── global
├── _layout.scss
├── _mixins.scss
└── _modifiers.scss
├── screenshot.png
└── vendor
├── _tachyons-preset.scss
├── _vanilla.scss
├── bootstrap
├── .babelrc.js
├── .browserslistrc
├── .eslintignore
├── .eslintrc.json
├── .gitattributes
├── .github
│ ├── CODEOWNERS
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE
│ │ ├── bug.md
│ │ ├── bug_report.md
│ │ ├── feature.md
│ │ └── feature_request.md
│ └── SUPPORT.md
├── .gitignore
├── .stylelintignore
├── .stylelintrc
├── .travis.yml
├── CNAME
├── CODE_OF_CONDUCT.md
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── SECURITY.md
├── _config.yml
├── build
│ ├── .eslintrc.json
│ ├── banner.js
│ ├── build-plugins.js
│ ├── change-version.js
│ ├── generate-sri.js
│ ├── postcss.config.js
│ ├── rollup.config.js
│ ├── ship.sh
│ ├── svgo.yml
│ └── vnu-jar.js
├── composer.json
├── dist
│ ├── css
│ │ ├── bootstrap-grid.css
│ │ ├── bootstrap-grid.css.map
│ │ ├── bootstrap-grid.min.css
│ │ ├── bootstrap-grid.min.css.map
│ │ ├── bootstrap-reboot.css
│ │ ├── bootstrap-reboot.css.map
│ │ ├── bootstrap-reboot.min.css
│ │ ├── bootstrap-reboot.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ └── js
│ │ ├── bootstrap.bundle.js
│ │ ├── bootstrap.bundle.js.map
│ │ ├── bootstrap.bundle.min.js
│ │ ├── bootstrap.bundle.min.js.map
│ │ ├── bootstrap.js
│ │ ├── bootstrap.js.map
│ │ ├── bootstrap.min.js
│ │ └── bootstrap.min.js.map
├── js
│ ├── dist
│ │ ├── alert.js
│ │ ├── alert.js.map
│ │ ├── button.js
│ │ ├── button.js.map
│ │ ├── carousel.js
│ │ ├── carousel.js.map
│ │ ├── collapse.js
│ │ ├── collapse.js.map
│ │ ├── dropdown.js
│ │ ├── dropdown.js.map
│ │ ├── index.js
│ │ ├── index.js.map
│ │ ├── modal.js
│ │ ├── modal.js.map
│ │ ├── popover.js
│ │ ├── popover.js.map
│ │ ├── scrollspy.js
│ │ ├── scrollspy.js.map
│ │ ├── tab.js
│ │ ├── tab.js.map
│ │ ├── toast.js
│ │ ├── toast.js.map
│ │ ├── tooltip.js
│ │ ├── tooltip.js.map
│ │ ├── util.js
│ │ └── util.js.map
│ ├── src
│ │ ├── alert.js
│ │ ├── button.js
│ │ ├── carousel.js
│ │ ├── collapse.js
│ │ ├── dom
│ │ │ ├── data.js
│ │ │ ├── eventHandler.js
│ │ │ ├── manipulator.js
│ │ │ ├── polyfill.js
│ │ │ └── selectorEngine.js
│ │ ├── dropdown.js
│ │ ├── index.js
│ │ ├── modal.js
│ │ ├── popover.js
│ │ ├── scrollspy.js
│ │ ├── tab.js
│ │ ├── toast.js
│ │ ├── tooltip.js
│ │ └── util
│ │ │ ├── index.js
│ │ │ └── sanitizer.js
│ └── tests
│ │ ├── README.md
│ │ ├── browsers.js
│ │ ├── integration
│ │ ├── bundle.js
│ │ ├── index.html
│ │ └── rollup.bundle.js
│ │ ├── karma.conf.js
│ │ ├── unit
│ │ ├── .eslintrc.json
│ │ ├── alert.js
│ │ ├── button.js
│ │ ├── carousel.js
│ │ ├── collapse.js
│ │ ├── dom
│ │ │ ├── data.js
│ │ │ ├── eventHandler.js
│ │ │ ├── manipulator.js
│ │ │ └── selectorEngine.js
│ │ ├── dropdown.js
│ │ ├── modal.js
│ │ ├── popover.js
│ │ ├── scrollspy.js
│ │ ├── tab.js
│ │ ├── toast.js
│ │ ├── tooltip.js
│ │ └── util
│ │ │ ├── index.js
│ │ │ └── sanitizer.js
│ │ └── visual
│ │ ├── alert.html
│ │ ├── button.html
│ │ ├── carousel.html
│ │ ├── collapse.html
│ │ ├── dropdown.html
│ │ ├── modal.html
│ │ ├── popover.html
│ │ ├── scrollspy.html
│ │ ├── tab.html
│ │ ├── toast.html
│ │ └── tooltip.html
├── nuget
│ ├── MyGet.ps1
│ ├── bootstrap.nuspec
│ └── bootstrap.sass.nuspec
├── package-lock.json
├── package.js
├── package.json
├── scss
│ ├── _alert.scss
│ ├── _badge.scss
│ ├── _breadcrumb.scss
│ ├── _button-group.scss
│ ├── _buttons.scss
│ ├── _card.scss
│ ├── _carousel.scss
│ ├── _close.scss
│ ├── _code.scss
│ ├── _custom-forms.scss
│ ├── _dropdown.scss
│ ├── _forms.scss
│ ├── _functions.scss
│ ├── _grid.scss
│ ├── _images.scss
│ ├── _input-group.scss
│ ├── _jumbotron.scss
│ ├── _list-group.scss
│ ├── _media.scss
│ ├── _mixins.scss
│ ├── _modal.scss
│ ├── _nav.scss
│ ├── _navbar.scss
│ ├── _pagination.scss
│ ├── _popover.scss
│ ├── _print.scss
│ ├── _progress.scss
│ ├── _reboot.scss
│ ├── _root.scss
│ ├── _spinners.scss
│ ├── _tables.scss
│ ├── _toasts.scss
│ ├── _tooltip.scss
│ ├── _transitions.scss
│ ├── _type.scss
│ ├── _utilities.scss
│ ├── _variables.scss
│ ├── bootstrap-grid.scss
│ ├── bootstrap-reboot.scss
│ ├── bootstrap.scss
│ ├── mixins
│ │ ├── _alert.scss
│ │ ├── _background-variant.scss
│ │ ├── _badge.scss
│ │ ├── _border-radius.scss
│ │ ├── _box-shadow.scss
│ │ ├── _breakpoints.scss
│ │ ├── _buttons.scss
│ │ ├── _caret.scss
│ │ ├── _clearfix.scss
│ │ ├── _deprecate.scss
│ │ ├── _float.scss
│ │ ├── _forms.scss
│ │ ├── _gradients.scss
│ │ ├── _grid-framework.scss
│ │ ├── _grid.scss
│ │ ├── _hover.scss
│ │ ├── _image.scss
│ │ ├── _list-group.scss
│ │ ├── _lists.scss
│ │ ├── _nav-divider.scss
│ │ ├── _pagination.scss
│ │ ├── _reset-text.scss
│ │ ├── _resize.scss
│ │ ├── _screen-reader.scss
│ │ ├── _size.scss
│ │ ├── _table-row.scss
│ │ ├── _text-emphasis.scss
│ │ ├── _text-hide.scss
│ │ ├── _text-truncate.scss
│ │ ├── _transition.scss
│ │ └── _visibility.scss
│ ├── utilities
│ │ ├── _align.scss
│ │ ├── _background.scss
│ │ ├── _borders.scss
│ │ ├── _clearfix.scss
│ │ ├── _display.scss
│ │ ├── _embed.scss
│ │ ├── _flex.scss
│ │ ├── _float.scss
│ │ ├── _overflow.scss
│ │ ├── _position.scss
│ │ ├── _screenreaders.scss
│ │ ├── _shadows.scss
│ │ ├── _sizing.scss
│ │ ├── _spacing.scss
│ │ ├── _stretched-link.scss
│ │ ├── _text.scss
│ │ └── _visibility.scss
│ └── vendor
│ │ └── _rfs.scss
└── site
│ ├── .eslintrc.json
│ ├── _data
│ ├── breakpoints.yml
│ ├── browser-bugs.yml
│ ├── browser-features.yml
│ ├── colors.yml
│ ├── core-team.yml
│ ├── docs-versions.yml
│ ├── examples.yml
│ ├── grays.yml
│ ├── nav.yml
│ ├── theme-colors.yml
│ └── translations.yml
│ ├── _includes
│ ├── ads.html
│ ├── analytics.html
│ ├── bugify.html
│ ├── callout-danger-async-methods.md
│ ├── callout-info-mediaqueries-breakpoints.md
│ ├── callout-info-prefersreducedmotion.md
│ ├── callout-warning-color-assistive-technologies.md
│ ├── callout.html
│ ├── docs-navbar.html
│ ├── docs-sidebar.html
│ ├── example.html
│ ├── favicons.html
│ ├── footer.html
│ ├── header.html
│ ├── icons
│ │ ├── bootstrap-stack.svg
│ │ ├── bootstrap.svg
│ │ ├── download.svg
│ │ ├── github.svg
│ │ ├── import.svg
│ │ ├── lightning.svg
│ │ ├── menu.svg
│ │ ├── opencollective.svg
│ │ ├── placeholder.svg
│ │ ├── slack.svg
│ │ └── twitter.svg
│ ├── scripts.html
│ ├── skippy.html
│ ├── social.html
│ └── stylesheet.html
│ ├── _layouts
│ ├── default.html
│ ├── docs.html
│ ├── examples.html
│ ├── home.html
│ └── simple.html
│ ├── docs
│ ├── 4.3
│ │ ├── about
│ │ │ ├── brand.md
│ │ │ ├── license.md
│ │ │ ├── overview.md
│ │ │ ├── team.md
│ │ │ └── translations.md
│ │ ├── assets
│ │ │ ├── brand
│ │ │ │ ├── bootstrap-outline.svg
│ │ │ │ ├── bootstrap-punchout.svg
│ │ │ │ ├── bootstrap-social-logo.png
│ │ │ │ ├── bootstrap-social.png
│ │ │ │ └── bootstrap-solid.svg
│ │ │ ├── css
│ │ │ │ ├── docs.min.css
│ │ │ │ └── docs.min.css.map
│ │ │ ├── img
│ │ │ │ ├── bootstrap-themes.png
│ │ │ │ ├── bootstrap-themes@2x.png
│ │ │ │ ├── examples
│ │ │ │ │ ├── album.png
│ │ │ │ │ ├── album@2x.png
│ │ │ │ │ ├── blog.png
│ │ │ │ │ ├── blog@2x.png
│ │ │ │ │ ├── carousel.png
│ │ │ │ │ ├── carousel@2x.png
│ │ │ │ │ ├── checkout.png
│ │ │ │ │ ├── checkout@2x.png
│ │ │ │ │ ├── cover.png
│ │ │ │ │ ├── cover@2x.png
│ │ │ │ │ ├── dashboard.png
│ │ │ │ │ ├── dashboard@2x.png
│ │ │ │ │ ├── floating-labels.png
│ │ │ │ │ ├── floating-labels@2x.png
│ │ │ │ │ ├── grid.png
│ │ │ │ │ ├── grid@2x.png
│ │ │ │ │ ├── jumbotron.png
│ │ │ │ │ ├── jumbotron@2x.png
│ │ │ │ │ ├── navbar-bottom.png
│ │ │ │ │ ├── navbar-bottom@2x.png
│ │ │ │ │ ├── navbar-fixed.png
│ │ │ │ │ ├── navbar-fixed@2x.png
│ │ │ │ │ ├── navbar-static.png
│ │ │ │ │ ├── navbar-static@2x.png
│ │ │ │ │ ├── navbars.png
│ │ │ │ │ ├── navbars@2x.png
│ │ │ │ │ ├── offcanvas.png
│ │ │ │ │ ├── offcanvas@2x.png
│ │ │ │ │ ├── pricing.png
│ │ │ │ │ ├── pricing@2x.png
│ │ │ │ │ ├── product.png
│ │ │ │ │ ├── product@2x.png
│ │ │ │ │ ├── sign-in.png
│ │ │ │ │ ├── sign-in@2x.png
│ │ │ │ │ ├── starter-template.png
│ │ │ │ │ ├── starter-template@2x.png
│ │ │ │ │ ├── sticky-footer-navbar.png
│ │ │ │ │ ├── sticky-footer-navbar@2x.png
│ │ │ │ │ ├── sticky-footer.png
│ │ │ │ │ └── sticky-footer@2x.png
│ │ │ │ └── favicons
│ │ │ │ │ ├── android-chrome-192x192.png
│ │ │ │ │ ├── android-chrome-512x512.png
│ │ │ │ │ ├── apple-touch-icon.png
│ │ │ │ │ ├── browserconfig.xml
│ │ │ │ │ ├── favicon-16x16.png
│ │ │ │ │ ├── favicon-32x32.png
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ ├── mstile-144x144.png
│ │ │ │ │ ├── mstile-150x150.png
│ │ │ │ │ ├── mstile-310x150.png
│ │ │ │ │ ├── mstile-310x310.png
│ │ │ │ │ ├── mstile-70x70.png
│ │ │ │ │ └── safari-pinned-tab.svg
│ │ │ ├── js
│ │ │ │ ├── docs.min.js
│ │ │ │ ├── src
│ │ │ │ │ ├── application.js
│ │ │ │ │ └── search.js
│ │ │ │ └── vendor
│ │ │ │ │ ├── anchor.min.js
│ │ │ │ │ ├── bs-custom-file-input.min.js
│ │ │ │ │ └── clipboard.min.js
│ │ │ └── scss
│ │ │ │ ├── _ads.scss
│ │ │ │ ├── _algolia.scss
│ │ │ │ ├── _anchor.scss
│ │ │ │ ├── _brand.scss
│ │ │ │ ├── _browser-bugs.scss
│ │ │ │ ├── _buttons.scss
│ │ │ │ ├── _callouts.scss
│ │ │ │ ├── _clipboard-js.scss
│ │ │ │ ├── _colors.scss
│ │ │ │ ├── _component-examples.scss
│ │ │ │ ├── _content.scss
│ │ │ │ ├── _footer.scss
│ │ │ │ ├── _masthead.scss
│ │ │ │ ├── _nav.scss
│ │ │ │ ├── _placeholder-img.scss
│ │ │ │ ├── _sidebar.scss
│ │ │ │ ├── _skippy.scss
│ │ │ │ ├── _syntax.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── docs.scss
│ │ ├── browser-bugs.md
│ │ ├── components
│ │ │ ├── alerts.md
│ │ │ ├── badge.md
│ │ │ ├── breadcrumb.md
│ │ │ ├── button-group.md
│ │ │ ├── buttons.md
│ │ │ ├── card.md
│ │ │ ├── carousel.md
│ │ │ ├── collapse.md
│ │ │ ├── dropdowns.md
│ │ │ ├── forms.md
│ │ │ ├── input-group.md
│ │ │ ├── jumbotron.md
│ │ │ ├── list-group.md
│ │ │ ├── media-object.md
│ │ │ ├── modal.md
│ │ │ ├── navbar.md
│ │ │ ├── navs.md
│ │ │ ├── pagination.md
│ │ │ ├── popovers.md
│ │ │ ├── progress.md
│ │ │ ├── scrollspy.md
│ │ │ ├── spinners.md
│ │ │ ├── toasts.md
│ │ │ └── tooltips.md
│ │ ├── content
│ │ │ ├── code.md
│ │ │ ├── figures.md
│ │ │ ├── images.md
│ │ │ ├── reboot.md
│ │ │ ├── tables.md
│ │ │ └── typography.md
│ │ ├── examples
│ │ │ ├── .stylelintrc
│ │ │ ├── album
│ │ │ │ ├── album.css
│ │ │ │ └── index.html
│ │ │ ├── blog
│ │ │ │ ├── blog.css
│ │ │ │ └── index.html
│ │ │ ├── carousel
│ │ │ │ ├── carousel.css
│ │ │ │ └── index.html
│ │ │ ├── checkout
│ │ │ │ ├── form-validation.css
│ │ │ │ ├── form-validation.js
│ │ │ │ └── index.html
│ │ │ ├── cover
│ │ │ │ ├── cover.css
│ │ │ │ └── index.html
│ │ │ ├── dashboard
│ │ │ │ ├── dashboard.css
│ │ │ │ ├── dashboard.js
│ │ │ │ └── index.html
│ │ │ ├── floating-labels
│ │ │ │ ├── floating-labels.css
│ │ │ │ └── index.html
│ │ │ ├── grid
│ │ │ │ ├── grid.css
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── jumbotron
│ │ │ │ ├── index.html
│ │ │ │ └── jumbotron.css
│ │ │ ├── navbar-bottom
│ │ │ │ └── index.html
│ │ │ ├── navbar-fixed
│ │ │ │ ├── index.html
│ │ │ │ └── navbar-top-fixed.css
│ │ │ ├── navbar-static
│ │ │ │ ├── index.html
│ │ │ │ └── navbar-top.css
│ │ │ ├── navbars
│ │ │ │ ├── index.html
│ │ │ │ └── navbar.css
│ │ │ ├── offcanvas
│ │ │ │ ├── index.html
│ │ │ │ ├── offcanvas.css
│ │ │ │ └── offcanvas.js
│ │ │ ├── pricing
│ │ │ │ ├── index.html
│ │ │ │ └── pricing.css
│ │ │ ├── product
│ │ │ │ ├── index.html
│ │ │ │ └── product.css
│ │ │ ├── sign-in
│ │ │ │ ├── index.html
│ │ │ │ └── signin.css
│ │ │ ├── starter-template
│ │ │ │ ├── index.html
│ │ │ │ └── starter-template.css
│ │ │ ├── sticky-footer-navbar
│ │ │ │ ├── index.html
│ │ │ │ └── sticky-footer-navbar.css
│ │ │ └── sticky-footer
│ │ │ │ ├── index.html
│ │ │ │ └── sticky-footer.css
│ │ ├── extend
│ │ │ ├── approach.md
│ │ │ └── icons.md
│ │ ├── getting-started
│ │ │ ├── accessibility.md
│ │ │ ├── best-practices.md
│ │ │ ├── browsers-devices.md
│ │ │ ├── build-tools.md
│ │ │ ├── contents.md
│ │ │ ├── download.md
│ │ │ ├── introduction.md
│ │ │ ├── javascript.md
│ │ │ ├── theming.md
│ │ │ └── webpack.md
│ │ ├── layout
│ │ │ ├── grid.md
│ │ │ ├── overview.md
│ │ │ └── utilities-for-layout.md
│ │ ├── migration.md
│ │ └── utilities
│ │ │ ├── borders.md
│ │ │ ├── clearfix.md
│ │ │ ├── close-icon.md
│ │ │ ├── colors.md
│ │ │ ├── display.md
│ │ │ ├── embed.md
│ │ │ ├── flex.md
│ │ │ ├── float.md
│ │ │ ├── image-replacement.md
│ │ │ ├── overflow.md
│ │ │ ├── position.md
│ │ │ ├── screen-readers.md
│ │ │ ├── shadows.md
│ │ │ ├── sizing.md
│ │ │ ├── spacing.md
│ │ │ ├── stretched-link.md
│ │ │ ├── text.md
│ │ │ ├── vertical-align.md
│ │ │ └── visibility.md
│ └── versions.html
│ ├── favicon.ico
│ ├── index.html
│ ├── robots.txt
│ └── sw.js
├── bulma
├── .github
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE.md
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── stale.yml
├── .gitignore
├── .travis.yml
├── BACKERS.md
├── CHANGELOG.md
├── LICENSE
├── README.md
├── bower.json
├── bulma.sass
├── css
│ ├── bulma.css
│ ├── bulma.css.map
│ └── bulma.min.css
├── docs
│ ├── .babelrc
│ ├── .gitignore
│ ├── CNAME
│ ├── LICENSE
│ ├── README.md
│ ├── _config.yml
│ ├── _data
│ │ ├── backers.json
│ │ ├── blog
│ │ │ └── migratingv070.json
│ │ ├── breakpoints.json
│ │ ├── colors.json
│ │ ├── global.json
│ │ ├── icons.json
│ │ ├── links.json
│ │ ├── love.json
│ │ ├── meta.json
│ │ ├── sponsors.json
│ │ └── variables
│ │ │ ├── base
│ │ │ └── generic.json
│ │ │ ├── components
│ │ │ ├── breadcrumb.json
│ │ │ ├── card.json
│ │ │ ├── dropdown.json
│ │ │ ├── menu.json
│ │ │ ├── message.json
│ │ │ ├── modal.json
│ │ │ ├── navbar.json
│ │ │ ├── pagination.json
│ │ │ ├── panel.json
│ │ │ └── tabs.json
│ │ │ ├── elements
│ │ │ ├── box.json
│ │ │ ├── button.json
│ │ │ ├── content.json
│ │ │ ├── form.json
│ │ │ ├── icon.json
│ │ │ ├── image.json
│ │ │ ├── notification.json
│ │ │ ├── progress.json
│ │ │ ├── table.json
│ │ │ ├── tag.json
│ │ │ └── title.json
│ │ │ ├── grid
│ │ │ └── columns.json
│ │ │ ├── layout
│ │ │ ├── footer.json
│ │ │ └── section.json
│ │ │ └── utilities
│ │ │ ├── controls.json
│ │ │ ├── derived-variables.json
│ │ │ └── initial-variables.json
│ ├── _includes
│ │ ├── book
│ │ │ ├── book-banner.html
│ │ │ ├── book-content.html
│ │ │ ├── book-cover.html
│ │ │ └── book-modal.html
│ │ ├── bp
│ │ │ ├── desktop.html
│ │ │ ├── fullhd.html
│ │ │ ├── touch.html
│ │ │ └── widescreen.html
│ │ ├── color
│ │ │ ├── black-bis.html
│ │ │ ├── black-ter.html
│ │ │ ├── black.html
│ │ │ ├── blue.html
│ │ │ ├── cyan.html
│ │ │ ├── green.html
│ │ │ ├── grey-dark.html
│ │ │ ├── grey-darker.html
│ │ │ ├── grey-light.html
│ │ │ ├── grey-lighter.html
│ │ │ ├── grey.html
│ │ │ ├── orange.html
│ │ │ ├── purple.html
│ │ │ ├── red.html
│ │ │ ├── turquoise.html
│ │ │ ├── white-bis.html
│ │ │ ├── white-ter.html
│ │ │ ├── white.html
│ │ │ └── yellow.html
│ │ ├── components
│ │ │ ├── anchors.html
│ │ │ ├── breadcrumb.html
│ │ │ ├── categories.html
│ │ │ ├── docs.html
│ │ │ ├── figure.html
│ │ │ ├── form-variables.html
│ │ │ ├── links.html
│ │ │ ├── more.html
│ │ │ └── step.html
│ │ ├── content
│ │ │ ├── comparison.html
│ │ │ ├── klmn.html
│ │ │ └── pro.html
│ │ ├── elements
│ │ │ ├── anchor.html
│ │ │ ├── bsa.html
│ │ │ ├── carbon.html
│ │ │ ├── color-square.html
│ │ │ ├── drawing.html
│ │ │ ├── external-link.html
│ │ │ ├── improve-page.html
│ │ │ ├── link.html
│ │ │ ├── meta.html
│ │ │ ├── new-tag.html
│ │ │ ├── patreon-item.html
│ │ │ ├── patreon.html
│ │ │ ├── responsive-image-2x.html
│ │ │ ├── responsive-image.html
│ │ │ ├── snippet.html
│ │ │ ├── sponsor-item.html
│ │ │ ├── tw-button.html
│ │ │ ├── tw.html
│ │ │ ├── tws.html
│ │ │ ├── variable-row.html
│ │ │ └── variables.html
│ │ ├── examples
│ │ │ ├── navbar-basic.html
│ │ │ ├── navbar-bottom.html
│ │ │ ├── navbar-color.html
│ │ │ └── navbar.html
│ │ ├── footer
│ │ │ ├── about.html
│ │ │ ├── boxes.html
│ │ │ ├── contribute.html
│ │ │ ├── link.html
│ │ │ ├── links.html
│ │ │ ├── main.html
│ │ │ ├── share.html
│ │ │ └── support.html
│ │ ├── global
│ │ │ ├── deprecated.html
│ │ │ ├── footer.html
│ │ │ ├── fortyfour.html
│ │ │ ├── head.html
│ │ │ ├── native.html
│ │ │ ├── navbar.html
│ │ │ ├── newsletter.html
│ │ │ ├── scripts.html
│ │ │ ├── side-sponsor.html
│ │ │ └── sponsors.html
│ │ ├── index
│ │ │ ├── columns.html
│ │ │ ├── customize.html
│ │ │ ├── features.html
│ │ │ ├── focus.html
│ │ │ ├── fullheight.html
│ │ │ ├── intro.html
│ │ │ ├── js.html
│ │ │ ├── level.html
│ │ │ ├── media-object.html
│ │ │ ├── modifiers.html
│ │ │ ├── sponsor.html
│ │ │ ├── start.html
│ │ │ ├── tiles.html
│ │ │ ├── tws.html
│ │ │ └── usual.html
│ │ ├── layout
│ │ │ ├── main-close.html
│ │ │ └── main-open.html
│ │ ├── snippets
│ │ │ ├── customized.html
│ │ │ ├── getting-started.html
│ │ │ └── mypage.html
│ │ ├── steps
│ │ │ ├── add-custom-styles.html
│ │ │ ├── create-html-page.html
│ │ │ ├── create-package.html
│ │ │ └── create-sass-file.html
│ │ ├── subnav
│ │ │ ├── subnav-columns.html
│ │ │ ├── subnav-components.html
│ │ │ ├── subnav-elements.html
│ │ │ ├── subnav-form.html
│ │ │ ├── subnav-grid.html
│ │ │ ├── subnav-layout.html
│ │ │ ├── subnav-modifiers.html
│ │ │ └── subnav-overview.html
│ │ ├── svg
│ │ │ ├── bootstrap-icon.svg
│ │ │ ├── bulma-b.svg
│ │ │ └── bulma-icon.svg
│ │ └── test
│ │ │ ├── features.html
│ │ │ └── from-to.html
│ ├── _javascript
│ │ ├── index.js
│ │ ├── klmn.js
│ │ ├── main.js
│ │ └── navbar.js
│ ├── _layouts
│ │ ├── default.html
│ │ ├── documentation.html
│ │ ├── more.html
│ │ └── post.html
│ ├── _posts
│ │ ├── 2016-02-09-blog-launched-new-responsive-columns-new-helpers.md
│ │ ├── 2016-04-11-metro-ui-css-grid-with-bulma-tiles.md
│ │ ├── 2017-03-10-new-field-element.md
│ │ ├── 2017-07-24-access-previous-bulma-versions.md
│ │ ├── 2017-08-01-bulma-bootstrap-comparison.md
│ │ ├── 2017-08-03-list-of-tags.md
│ │ ├── 2017-10-09-roses-are-red-links-are-blue.md
│ │ ├── 2017-10-22-list-of-buttons.md
│ │ ├── 2017-11-01-fixed-navbar.md
│ │ ├── 2017-11-14-bulma-is-on-patreon.md
│ │ ├── 2018-01-18-bulma-supports-font-awesome-5.md
│ │ ├── 2018-04-13-website-redesign.md
│ │ ├── 2018-04-14-migration-to-v070.md
│ │ └── 2018-06-20-automatic-variables-documentation.md
│ ├── _sass
│ │ ├── book.sass
│ │ ├── bootstrap.sass
│ │ ├── bsa.sass
│ │ ├── callout.sass
│ │ ├── example.sass
│ │ ├── expo.sass
│ │ ├── focus.sass
│ │ ├── footer.sass
│ │ ├── global.sass
│ │ ├── header.sass
│ │ ├── highlight.sass
│ │ ├── index.sass
│ │ ├── klmn.sass
│ │ ├── love.sass
│ │ ├── main.sass
│ │ ├── native.sass
│ │ ├── override.sass
│ │ ├── patreon.sass
│ │ ├── specific.sass
│ │ ├── sponsors.sass
│ │ └── twitter.sass
│ ├── alternative-to-bootstrap.html
│ ├── atom.xml
│ ├── backers.html
│ ├── blog.html
│ ├── bulma-docs.sass
│ ├── bulma-start.html
│ ├── css
│ │ ├── bulma-docs.css
│ │ └── bulma-docs.min.css
│ ├── docker-compose.yml
│ ├── documentation.html
│ ├── documentation
│ │ ├── columns.html
│ │ ├── columns
│ │ │ ├── basics.html
│ │ │ ├── gap.html
│ │ │ ├── nesting.html
│ │ │ ├── options.html
│ │ │ ├── responsiveness.html
│ │ │ └── sizes.html
│ │ ├── components.html
│ │ ├── components
│ │ │ ├── breadcrumb.html
│ │ │ ├── card.html
│ │ │ ├── dropdown.html
│ │ │ ├── level.html
│ │ │ ├── list.html
│ │ │ ├── media-object.html
│ │ │ ├── menu.html
│ │ │ ├── message.html
│ │ │ ├── modal.html
│ │ │ ├── nav.html
│ │ │ ├── navbar.html
│ │ │ ├── pagination.html
│ │ │ ├── panel.html
│ │ │ └── tabs.html
│ │ ├── customize.html
│ │ ├── customize
│ │ │ ├── concepts.html
│ │ │ ├── variables.html
│ │ │ ├── with-node-sass.html
│ │ │ ├── with-sass-cli.html
│ │ │ └── with-webpack.html
│ │ ├── elements.html
│ │ ├── elements
│ │ │ ├── box.html
│ │ │ ├── button.html
│ │ │ ├── content.html
│ │ │ ├── delete.html
│ │ │ ├── form.html
│ │ │ ├── icon.html
│ │ │ ├── image.html
│ │ │ ├── notification.html
│ │ │ ├── progress.html
│ │ │ ├── table.html
│ │ │ ├── tag.html
│ │ │ └── title.html
│ │ ├── form.html
│ │ ├── form
│ │ │ ├── checkbox.html
│ │ │ ├── file.html
│ │ │ ├── general.html
│ │ │ ├── input.html
│ │ │ ├── radio.html
│ │ │ ├── select.html
│ │ │ └── textarea.html
│ │ ├── layout.html
│ │ ├── layout
│ │ │ ├── container.html
│ │ │ ├── footer.html
│ │ │ ├── hero.html
│ │ │ ├── level.html
│ │ │ ├── media-object.html
│ │ │ ├── section.html
│ │ │ └── tiles.html
│ │ ├── modifiers.html
│ │ ├── modifiers
│ │ │ ├── color-helpers.html
│ │ │ ├── helpers.html
│ │ │ ├── responsive-helpers.html
│ │ │ ├── syntax.html
│ │ │ └── typography-helpers.html
│ │ ├── overview.html
│ │ └── overview
│ │ │ ├── classes.html
│ │ │ ├── colors.html
│ │ │ ├── customize.html
│ │ │ ├── functions.html
│ │ │ ├── mixins.html
│ │ │ ├── modular.html
│ │ │ ├── responsiveness.html
│ │ │ ├── start.html
│ │ │ └── variables.html
│ ├── expo.html
│ ├── extensions.html
│ ├── favicons
│ │ ├── android-chrome-192x192.png
│ │ ├── android-chrome-384x384.png
│ │ ├── apple-touch-icon.png
│ │ ├── browserconfig.xml
│ │ ├── favicon-16x16.png
│ │ ├── favicon-32x32.png
│ │ ├── favicon.ico
│ │ ├── manifest.json
│ │ ├── mstile-150x150.png
│ │ └── safari-pinned-tab.svg
│ ├── images
│ │ ├── become-a-patron.png
│ │ ├── become-a-patron@2x.png
│ │ ├── become-a-patron@3x.png
│ │ ├── blog
│ │ │ ├── dropup.png
│ │ │ ├── fixed-navbar.mp4
│ │ │ ├── list-of-buttons.png
│ │ │ ├── list-of-tags.png
│ │ │ ├── metro-ui-css-grid-tiles.png
│ │ │ ├── patreon-homepage.png
│ │ │ ├── share
│ │ │ │ ├── access-previous-bulma-versions.jpg
│ │ │ │ ├── blog-launched-new-responsive-columns-new-helpers.jpg
│ │ │ │ ├── bulma-bootstrap-comparison.jpg
│ │ │ │ ├── bulma-is-on-patreon.jpg
│ │ │ │ ├── bulma-supports-font-awesome-5.jpg
│ │ │ │ ├── fixed-navbar.jpg
│ │ │ │ ├── list-of-buttons.jpg
│ │ │ │ ├── list-of-tags.jpg
│ │ │ │ ├── metro-ui-css-grid-with-bulma-tiles.jpg
│ │ │ │ ├── new-field-element.jpg
│ │ │ │ └── roses-are-red-links-are-blue.jpg
│ │ │ ├── v7
│ │ │ │ ├── after.png
│ │ │ │ ├── before.png
│ │ │ │ ├── breadcrumb.png
│ │ │ │ ├── categories.png
│ │ │ │ ├── commits.png
│ │ │ │ ├── customize.png
│ │ │ │ ├── diff.png
│ │ │ │ ├── files.png
│ │ │ │ ├── footer.png
│ │ │ │ ├── links.png
│ │ │ │ ├── navbar.png
│ │ │ │ ├── prevnext.png
│ │ │ │ ├── prevnextbis.png
│ │ │ │ └── scrollspy.png
│ │ │ └── variables
│ │ │ │ ├── json.png
│ │ │ │ └── variables-table.png
│ │ ├── book
│ │ │ ├── amazon-logo.png
│ │ │ ├── bleedingedge-type.png
│ │ │ ├── book-cover.png
│ │ │ ├── book-cover@2x.png
│ │ │ └── book-cover@3x.png
│ │ ├── bulma-banner.png
│ │ ├── bulma-icon.png
│ │ ├── bulma-logo-white.png
│ │ ├── bulma-logo.png
│ │ ├── bulma-start.png
│ │ ├── bulma-type-white.png
│ │ ├── bulma-type.png
│ │ ├── css-book
│ │ │ ├── css-in-44-minutes-book-cover.png
│ │ │ ├── css-in-44-minutes-book-cover@2x.png
│ │ │ └── css-in-44-minutes-book-cover@3x.png
│ │ ├── css-reference-logo.png
│ │ ├── customize-after.png
│ │ ├── customize-before.png
│ │ ├── customize
│ │ │ ├── custom-bulma-01-unstyled.png
│ │ │ ├── custom-bulma-01-unstyled@2x.png
│ │ │ ├── custom-bulma-02-default.png
│ │ │ ├── custom-bulma-02-default@2x.png
│ │ │ ├── custom-bulma-03-styled.png
│ │ │ └── custom-bulma-03-styled@2x.png
│ │ ├── drawing
│ │ │ ├── crazy.png
│ │ │ ├── customize.png
│ │ │ ├── join-us.png
│ │ │ ├── love-letters.png
│ │ │ ├── opinion-free.png
│ │ │ ├── spam-free.png
│ │ │ └── try-it-out.png
│ │ ├── expo
│ │ │ ├── adilmania-1344x840.jpg
│ │ │ ├── adilmania-2688x1680.jpg
│ │ │ ├── adilmania-672x420.jpg
│ │ │ ├── alt-three-1344x840.jpg
│ │ │ ├── alt-three-672x420.jpg
│ │ │ ├── anyshortcut-1344x840.jpg
│ │ │ ├── anyshortcut-672x420.jpg
│ │ │ ├── apache-bookkeeper-1344x840.jpg
│ │ │ ├── apache-bookkeeper-672x420.jpg
│ │ │ ├── bashful-birdie-1344x840.jpg
│ │ │ ├── bashful-birdie-672x420.jpg
│ │ │ ├── bongoutindonesia-1344x840.jpg
│ │ │ ├── bongoutindonesia-672x420.jpg
│ │ │ ├── booknshelf-1344x840.jpg
│ │ │ ├── booknshelf-672x420.jpg
│ │ │ ├── brújula-turística-1344x840.jpg
│ │ │ ├── brújula-turística-672x420.jpg
│ │ │ ├── buefy-1344x840.jpg
│ │ │ ├── buefy-672x420.jpg
│ │ │ ├── bugcraft-studio-1344x840.jpg
│ │ │ ├── bugcraft-studio-672x420.jpg
│ │ │ ├── bulma-expo-share.png
│ │ │ ├── cronhub-1344x840.jpg
│ │ │ ├── cronhub-2688x1680.jpg
│ │ │ ├── cronhub-672x420.jpg
│ │ │ ├── cssninja-1344x840.jpg
│ │ │ ├── cssninja-2688x1680.jpg
│ │ │ ├── cssninja-672x420.jpg
│ │ │ ├── danielfr-1344x840.jpg
│ │ │ ├── danielfr-2688x1680.jpg
│ │ │ ├── danielfr-672x420.jpg
│ │ │ ├── driftrock-1344x840.jpg
│ │ │ ├── driftrock-2688x1680.jpg
│ │ │ ├── driftrock-672x420.jpg
│ │ │ ├── elevo-1344x840.jpg
│ │ │ ├── elevo-672x420.jpg
│ │ │ ├── faulthero-1344x840.jpg
│ │ │ ├── faulthero-2688x1680.jpg
│ │ │ ├── faulthero-672x420.jpg
│ │ │ ├── favicon-1344x840.jpg
│ │ │ ├── favicon-2688x1680.jpg
│ │ │ ├── favicon-672x420.jpg
│ │ │ ├── getbedtimestories-1344x840.jpg
│ │ │ ├── getbedtimestories-2688x1680.jpg
│ │ │ ├── getbedtimestories-672x420.jpg
│ │ │ ├── griko-1344x840.jpg
│ │ │ ├── griko-2688x1680.jpg
│ │ │ ├── griko-672x420.jpg
│ │ │ ├── gustav-1344x840.jpg
│ │ │ ├── gustav-2688x1680.jpg
│ │ │ ├── hellogustav-672x420.jpg
│ │ │ ├── hodlfund-1344x840.jpg
│ │ │ ├── hodlfund-2688x1680.jpg
│ │ │ ├── hodlfund-672x420.jpg
│ │ │ ├── immunizationacademy-1344x840.jpg
│ │ │ ├── immunizationacademy-2688x1680.jpg
│ │ │ ├── immunizationacademy-672x420.jpg
│ │ │ ├── jethromay-1344x840.jpg
│ │ │ ├── jethromay-2688x1680.jpg
│ │ │ ├── jethromay-672x420.jpg
│ │ │ ├── jgthms-1344x840.jpg
│ │ │ ├── jgthms-2688x1680.jpg
│ │ │ ├── jgthms-672x420.jpg
│ │ │ ├── jobees-1344x840.jpg
│ │ │ ├── jobees-2688x1680.jpg
│ │ │ ├── jobees-672x420.jpg
│ │ │ ├── jubiwee-1344x840.jpg
│ │ │ ├── jubiwee-672x420.jpg
│ │ │ ├── kappamon-1344x840.jpg
│ │ │ ├── kappamon-672x420.jpg
│ │ │ ├── lottiefiles-1344x840.jpg
│ │ │ ├── lottiefiles-672x420.jpg
│ │ │ ├── mattfarley-1344x840.jpg
│ │ │ ├── mattfarley-2688x1680.jpg
│ │ │ ├── mattfarley-672x420.jpg
│ │ │ ├── md5-1344x840.jpg
│ │ │ ├── md5-672x420.jpg
│ │ │ ├── miso-1344x840.jpg
│ │ │ ├── miso-672x420.jpg
│ │ │ ├── mod-1344x840.jpg
│ │ │ ├── mod-2688x1680.jpg
│ │ │ ├── mod-672x420.jpg
│ │ │ ├── mynameismirko-1344x840.jpg
│ │ │ ├── mynameismirko-2688x1680.jpg
│ │ │ ├── mynameismirko-672x420.jpg
│ │ │ ├── mythril-1344x840.jpg
│ │ │ ├── mythril-2688x1680.jpg
│ │ │ ├── mythril-672x420.jpg
│ │ │ ├── oneday-1344x840.jpg
│ │ │ ├── oneday-2688x1680.jpg
│ │ │ ├── oneday-672x420.jpg
│ │ │ ├── penmob-1344x840.jpg
│ │ │ ├── penmob-672x420.jpg
│ │ │ ├── planhr-1344x840.jpg
│ │ │ ├── planhr-2688x1680.jpg
│ │ │ ├── planhr-672x420.jpg
│ │ │ ├── pollygot-1344x840.jpg
│ │ │ ├── pollygot-672x420.jpg
│ │ │ ├── pragonauts-1344x840.jpg
│ │ │ ├── pragonauts-672x420.jpg
│ │ │ ├── primative-1344x840.jpg
│ │ │ ├── primative-2688x1680.jpg
│ │ │ ├── primative-672x420.jpg
│ │ │ ├── reportz-1344x840.jpg
│ │ │ ├── reportz-672x420.jpg
│ │ │ ├── shecodes-1344x840.jpg
│ │ │ ├── shecodes-2688x1680.jpg
│ │ │ ├── shecodes-672x420.jpg
│ │ │ ├── sketch-for-designrs-1344x840.jpg
│ │ │ ├── sketch-for-designrs-2688x1680.jpg
│ │ │ ├── sketch-for-designrs-672x420.jpg
│ │ │ ├── smileonthetiles-1344x840.jpg
│ │ │ ├── smileonthetiles-672x420.jpg
│ │ │ ├── uigoodies-1344x840.jpg
│ │ │ ├── uigoodies-2688x1680.jpg
│ │ │ ├── uigoodies-672x420.jpg
│ │ │ ├── uploadme-1344x840.jpg
│ │ │ ├── uploadme-2688x1680.jpg
│ │ │ ├── uploadme-672x420.jpg
│ │ │ ├── vybranthotels-1344x840.jpg
│ │ │ ├── vybranthotels-672x420.jpg
│ │ │ ├── whiterabbitexpress-1344x840.jpg
│ │ │ ├── whiterabbitexpress-2688x1680.jpg
│ │ │ ├── whiterabbitexpress-672x420.jpg
│ │ │ ├── ysimplicity-1344x840.jpg
│ │ │ ├── ysimplicity-672x420.jpg
│ │ │ ├── zea-1344x840.jpg
│ │ │ ├── zea-2688x1680.jpg
│ │ │ └── zea-672x420.jpg
│ │ ├── extensions
│ │ │ ├── bulma-accordion.png
│ │ │ ├── bulma-badge.png
│ │ │ ├── bulma-calendar.png
│ │ │ ├── bulma-carousel.png
│ │ │ ├── bulma-checkradio.png
│ │ │ ├── bulma-coolcheckbox.png
│ │ │ ├── bulma-dashboard.png
│ │ │ ├── bulma-divider.png
│ │ │ ├── bulma-iconpicker.png
│ │ │ ├── bulma-megamenu.png
│ │ │ ├── bulma-o-steps.png
│ │ │ ├── bulma-pageloader.png
│ │ │ ├── bulma-pricingtable.png
│ │ │ ├── bulma-quickview.png
│ │ │ ├── bulma-ribbon.png
│ │ │ ├── bulma-slider.png
│ │ │ ├── bulma-steps-alternative.png
│ │ │ ├── bulma-steps.png
│ │ │ ├── bulma-switch.png
│ │ │ ├── bulma-tagsinput.png
│ │ │ ├── bulma-timeline.png
│ │ │ ├── bulma-toast.png
│ │ │ ├── bulma-tooltip.png
│ │ │ └── bulma.io-axure.png
│ │ ├── footer
│ │ │ ├── bootstrap-to-bulma.png
│ │ │ ├── expo-examples.png
│ │ │ ├── jesse.png
│ │ │ ├── love-film.png
│ │ │ └── love.png
│ │ ├── fortyfour-background.jpg
│ │ ├── fortyfour-native.png
│ │ ├── hab
│ │ │ └── lightpaperfibers_@2X.png
│ │ ├── html-reference-logo.png
│ │ ├── index
│ │ │ ├── js-frameworks.png
│ │ │ ├── vimeo-placeholder-bis.jpg
│ │ │ └── vimeo-placeholder.jpg
│ │ ├── jgthms.png
│ │ ├── made-with-bulma--black.png
│ │ ├── made-with-bulma--dark.png
│ │ ├── made-with-bulma--semiblack.png
│ │ ├── made-with-bulma--semiwhite.png
│ │ ├── made-with-bulma--white.png
│ │ ├── made-with-bulma-badges.zip
│ │ ├── made-with-bulma.png
│ │ ├── patreon.png
│ │ ├── paypal-donate.png
│ │ ├── placeholders
│ │ │ ├── 1280x960.png
│ │ │ ├── 128x128.png
│ │ │ ├── 16x16.png
│ │ │ ├── 240x720.png
│ │ │ ├── 24x24.png
│ │ │ ├── 256x256.png
│ │ │ ├── 300x225.png
│ │ │ ├── 320x480.png
│ │ │ ├── 320x640.png
│ │ │ ├── 32x32.png
│ │ │ ├── 360x640.png
│ │ │ ├── 480x320.png
│ │ │ ├── 480x480.png
│ │ │ ├── 480x600.png
│ │ │ ├── 480x640.png
│ │ │ ├── 480x800.png
│ │ │ ├── 48x48.png
│ │ │ ├── 600x480.png
│ │ │ ├── 640x320.png
│ │ │ ├── 640x360.png
│ │ │ ├── 640x480.png
│ │ │ ├── 64x64.png
│ │ │ ├── 672x420.jpg
│ │ │ ├── 720x240.png
│ │ │ ├── 800x480.png
│ │ │ ├── 96x96.png
│ │ │ └── empty.png
│ │ ├── sponsors
│ │ │ ├── 9brainz.png
│ │ │ ├── bestcss.png
│ │ │ ├── chainaxe.png
│ │ │ ├── chainaxe@2x.png
│ │ │ ├── chainaxe@3x.png
│ │ │ ├── devsquad.png
│ │ │ ├── devsquad@2x.png
│ │ │ ├── devsquad@3x.png
│ │ │ ├── dontpayfull.png
│ │ │ ├── dontpayfull@2x.png
│ │ │ ├── dontpayfull@3x.png
│ │ │ ├── hebergeurweb.png
│ │ │ ├── hebergeurweb@2x.png
│ │ │ ├── hebergeurweb@3x.png
│ │ │ ├── hyper-host.png
│ │ │ ├── hyper-host@2x.png
│ │ │ ├── hyper-host@3x.png
│ │ │ ├── keycdn.png
│ │ │ ├── keycdn@2x.png
│ │ │ ├── keycdn@3x.png
│ │ │ ├── nazar.png
│ │ │ ├── themeisle.png
│ │ │ ├── themeisle@2x.png
│ │ │ ├── themeisle@3x.png
│ │ │ ├── tipe.png
│ │ │ ├── tipe@2x.png
│ │ │ ├── tipe@3x.png
│ │ │ ├── tooltwist.png
│ │ │ ├── tooltwist@2x.png
│ │ │ ├── tooltwist@3x.png
│ │ │ ├── vpsserver.png
│ │ │ ├── vpsserver@2x.png
│ │ │ ├── vpsserver@3x.png
│ │ │ ├── yakaz.png
│ │ │ ├── yakaz@2x.png
│ │ │ └── yakaz@3x.png
│ │ ├── various
│ │ │ ├── atFranCruz.jpg
│ │ │ ├── dmitri-popov-265077.jpg
│ │ │ ├── rodion-kutsaev-24833.jpg
│ │ │ ├── sven-scheuermeier-34477.jpg
│ │ │ └── tom-levold-260373.jpg
│ │ └── videos
│ │ │ ├── blog.gif
│ │ │ ├── blog.mp4
│ │ │ ├── blog.png
│ │ │ ├── slide.png
│ │ │ ├── tesla.gif
│ │ │ ├── tesla.mp4
│ │ │ └── tesla.png
│ ├── index.html
│ ├── lib
│ │ ├── bulma.js
│ │ ├── clipboard.min.js
│ │ ├── index.js
│ │ ├── klmn.js
│ │ ├── main.js
│ │ └── navbar.js
│ ├── love.html
│ ├── made-with-bulma.html
│ ├── more.html
│ ├── package.json
│ ├── scripts
│ │ ├── .gitignore
│ │ ├── 01-initial.js
│ │ ├── 02-derived.js
│ │ ├── 03-other.js
│ │ └── plugins
│ │ │ ├── 01-read-initial-variables.js
│ │ │ ├── 02-read-derived-variables.js
│ │ │ ├── 03-read-other-variables.js
│ │ │ └── utils.js
│ ├── templates.html
│ ├── thank-you.html
│ ├── tiles.html
│ ├── vendor
│ │ ├── blazy-1.8.2.min.js
│ │ ├── clipboard-1.7.1.min.js
│ │ ├── js.cookie-2.1.4.min.js
│ │ ├── lazyload-2.0.0-beta.2.min.js
│ │ └── native.js
│ ├── videos.html
│ └── yarn.lock
├── package-lock.json
├── package.json
├── sass
│ ├── base
│ │ ├── _all.sass
│ │ ├── generic.sass
│ │ ├── helpers.sass
│ │ └── minireset.sass
│ ├── components
│ │ ├── _all.sass
│ │ ├── breadcrumb.sass
│ │ ├── card.sass
│ │ ├── dropdown.sass
│ │ ├── level.sass
│ │ ├── list.sass
│ │ ├── media.sass
│ │ ├── menu.sass
│ │ ├── message.sass
│ │ ├── modal.sass
│ │ ├── navbar.sass
│ │ ├── pagination.sass
│ │ ├── panel.sass
│ │ └── tabs.sass
│ ├── elements
│ │ ├── _all.sass
│ │ ├── box.sass
│ │ ├── button.sass
│ │ ├── container.sass
│ │ ├── content.sass
│ │ ├── form.sass
│ │ ├── icon.sass
│ │ ├── image.sass
│ │ ├── notification.sass
│ │ ├── other.sass
│ │ ├── progress.sass
│ │ ├── table.sass
│ │ ├── tag.sass
│ │ └── title.sass
│ ├── grid
│ │ ├── _all.sass
│ │ ├── columns.sass
│ │ └── tiles.sass
│ ├── layout
│ │ ├── _all.sass
│ │ ├── footer.sass
│ │ ├── hero.sass
│ │ └── section.sass
│ └── utilities
│ │ ├── _all.sass
│ │ ├── animations.sass
│ │ ├── controls.sass
│ │ ├── derived-variables.sass
│ │ ├── functions.sass
│ │ ├── initial-variables.sass
│ │ └── mixins.sass
├── test
│ └── sass-compile-tester.sh
└── yarn.lock
├── tachyons-mixins
├── _aspect-ratios.scss
├── _background-position.scss
├── _background-size.scss
├── _border-colors.scss
├── _border-radius.scss
├── _border-style.scss
├── _border-widths.scss
├── _borders.scss
├── _box-shadow.scss
├── _box-sizing.scss
├── _clears.scss
├── _code.scss
├── _coordinates.scss
├── _debug-children.scss
├── _debug-grid.scss
├── _debug.scss
├── _display.scss
├── _flexbox.scss
├── _floats.scss
├── _font-family.scss
├── _font-style.scss
├── _font-weight.scss
├── _forms.scss
├── _gradients.scss
├── _heights.scss
├── _hovers.scss
├── _images.scss
├── _letter-spacing.scss
├── _line-height.scss
├── _links.scss
├── _lists.scss
├── _max-widths.scss
├── _module-template.scss
├── _negative-margins.scss
├── _nested.scss
├── _normalize.scss
├── _opacity.scss
├── _outlines.scss
├── _overflow.scss
├── _position.scss
├── _rotations.scss
├── _skins-pseudo.scss
├── _skins.scss
├── _spacing.scss
├── _styles.scss
├── _tables.scss
├── _tachyons.scss
├── _text-align.scss
├── _text-decoration.scss
├── _text-transform.scss
├── _type-scale.scss
├── _typography.scss
├── _utilities.scss
├── _variables.scss
├── _vertical-align.scss
├── _visibility.scss
├── _white-space.scss
├── _widths.scss
├── _word-break.scss
└── _z-index.scss
└── tachyons-sass
├── .gitignore
├── .travis.yml
├── build.js
├── license
├── package-lock.json
├── package.json
├── readme.md
├── scss
├── _aspect-ratios.scss
├── _background-position.scss
├── _background-size.scss
├── _border-colors.scss
├── _border-radius.scss
├── _border-style.scss
├── _border-widths.scss
├── _borders.scss
├── _box-shadow.scss
├── _box-sizing.scss
├── _clears.scss
├── _code.scss
├── _coordinates.scss
├── _debug-children.scss
├── _debug-grid.scss
├── _debug.scss
├── _debug_children.scss
├── _display.scss
├── _flexbox.scss
├── _floats.scss
├── _font-family.scss
├── _font-style.scss
├── _font-weight.scss
├── _forms.scss
├── _gradients.scss
├── _heights.scss
├── _hovers.scss
├── _images.scss
├── _letter-spacing.scss
├── _line-height.scss
├── _links.scss
├── _lists.scss
├── _max-widths.scss
├── _module-template.scss
├── _negative-margins.scss
├── _nested.scss
├── _normalize.scss
├── _opacity.scss
├── _outlines.scss
├── _overflow.scss
├── _position.scss
├── _rotations.scss
├── _skins-pseudo.scss
├── _skins.scss
├── _spacing.scss
├── _styles.scss
├── _tables.scss
├── _text-align.scss
├── _text-decoration.scss
├── _text-transform.scss
├── _type-scale.scss
├── _typography.scss
├── _utilities.scss
├── _variables.scss
├── _vertical-align.scss
├── _visibility.scss
├── _white-space.scss
├── _widths.scss
├── _word-break.scss
└── _z-index.scss
├── tachyons.scss
├── test.js
└── yarn.lock
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | All notable changes to this project will be documented in this file.
4 |
5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 |
8 | ## 0.0.1 - 2019-02-28
9 |
10 | ### Added
11 |
12 | - Selectors for vanilla blocks
13 | - Selectors for Tachyons blocks
14 | - Custom version of tachyons composed of @mixins
15 |
16 | ### Improved
17 |
18 | - Debug outline mode
19 | - Debug element mode
--------------------------------------------------------------------------------
/_editor.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/_editor.scss
--------------------------------------------------------------------------------
/_vendor.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Vendor
3 | *
4 | * You are probably including your framework
5 | * already and can safely disable/delete
6 | * any/all of these.
7 | *
8 | * Note that deleting tachyons is six years of bad luck!
9 | *
10 | **/
11 |
12 | // Bootstrap
13 | // @import "vendor/bootstrap/scss/bootstrap";
14 |
15 | // Tachyons
16 | // @import "vendor/tachyons-preset";
17 | // @import "vendor/tachyons-mixins/tachyons";
18 |
19 | // Bulma
20 | @import "vendor/bulma/bulma";
21 |
22 | // Vanilla
23 | // @import "vendor/vanilla";
24 |
--------------------------------------------------------------------------------
/_wp-blocks.scss:
--------------------------------------------------------------------------------
1 | @import "vendor";
2 | @import "config";
3 | @import "utilities";
4 | @import "debug";
5 | @import "global/mixins";
6 |
7 | .wp-blocks {
8 | @import "global/layout";
9 | @import "global/modifiers";
10 |
11 | // Blocksets
12 | @import "blocks/bulma/blocks";
13 | // @import "blocks/bootstrap/blocks";
14 | // @import "blocks/tachyons/blocks";
15 | // @import "blocks/vanilla/blocks";
16 |
17 | @include debug(wp-blocks);
18 | @include debugGrid();
19 | @include debugElements();
20 | }
21 |
--------------------------------------------------------------------------------
/blocks/bootstrap/_blocks.scss:
--------------------------------------------------------------------------------
1 | %wp-block__bootstrap {
2 | @import "wp-block-columns";
3 | }
4 |
--------------------------------------------------------------------------------
/blocks/bootstrap/_wp-block-columns.scss:
--------------------------------------------------------------------------------
1 | .wp-block-columns {
2 | @extend .columns;
3 |
4 | .wp-block-column {
5 | @extend .column;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/blocks/bulma/_blocks.scss:
--------------------------------------------------------------------------------
1 | @import "general";
2 | @import "wp-block-audio";
3 | @import "wp-block-button";
4 | @import "wp-block-columns";
5 | @import "wp-block-cover";
6 | @import "wp-block-embed";
7 | @import "wp-block-gallery";
8 | @import "wp-block-image";
9 | @import "wp-block-media";
10 | @import "wp-block-pullquote";
11 | @import "wp-block-quote";
12 | @import "wp-block-separator";
13 | @import "wp-block-table";
14 |
--------------------------------------------------------------------------------
/blocks/bulma/_general.scss:
--------------------------------------------------------------------------------
1 | @for $i from 1 to 7 {
2 | h#{$i} {
3 | @extend .is-size-#{$i};
4 |
5 | strong {
6 | @extend .title;
7 | }
8 |
9 | @include debug(h#{$i});
10 | }
11 | }
12 |
13 | table {
14 | @extend .table;
15 | }
16 |
17 | .aligncenter {
18 | @extend .has-center-content;
19 | }
20 |
--------------------------------------------------------------------------------
/blocks/bulma/_wp-block-audio.scss:
--------------------------------------------------------------------------------
1 | @mixin wp-block-audio__bulma {
2 | .wp-block-audio {
3 | audio {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | border-radius: block_option("wp-block-audio", "border-radius");
8 | }
9 |
10 | figcaption {
11 | text-align: center;
12 | font-style: italic;
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/blocks/bulma/_wp-block-columns.scss:
--------------------------------------------------------------------------------
1 | .wp-block-columns {
2 | @extend .columns;
3 |
4 | margin-top: 0;
5 | margin-left: auto;
6 | margin-right: auto;
7 |
8 | .wp-block-column {
9 | @extend .column;
10 |
11 | &:first-child {
12 | padding-left: 0;
13 | }
14 |
15 | &:last-child {
16 | padding-right: 0;
17 | }
18 | }
19 |
20 | @include debug(wp-block-columns);
21 | }
22 |
--------------------------------------------------------------------------------
/blocks/bulma/_wp-block-table.scss:
--------------------------------------------------------------------------------
1 | .wp-block-table {
2 | @extend .table;
3 | }
4 |
--------------------------------------------------------------------------------
/blocks/tachyons/_blocks.scss:
--------------------------------------------------------------------------------
1 | @import "dropcap";
2 | @import "lists";
3 | @import "media";
4 | @import "preformatted";
5 | @import "wp-block-button";
6 | @import "wp-block-columns";
7 | @import "wp-block-cover";
8 | @import "wp-block-gallery";
9 | @import "wp-block-images";
10 | @import "wp-block-quote";
11 | @import "wp-block-separator";
12 |
--------------------------------------------------------------------------------
/blocks/tachyons/_dropcap.scss:
--------------------------------------------------------------------------------
1 | > .has-drop-cap::first-letter {
2 | @include f-subheadline;
3 | @include fl;
4 | @include mr3;
5 |
6 | line-height: 4.4rem;
7 | }
8 |
--------------------------------------------------------------------------------
/blocks/tachyons/_lists.scss:
--------------------------------------------------------------------------------
1 | > ol:not([class^="wp-block-"]),
2 | > ol:not([class^="wp-block-"]) * {
3 | list-style-position: inside;
4 | list-style-type: lower-greek;
5 | }
6 |
7 | > ul:not([class^="wp-block-"]),
8 | > ul:not([class^="wp-block-"]) * {
9 | list-style-position: inside;
10 | list-style-type: square;
11 | }
12 |
13 | > ol:not([class^="wp-block-"]) li,
14 | > ol:not([class^="wp-block-"]) li *,
15 | > ul:not([class^="wp-block-"]) li,
16 | > ul:not([class^="wp-block-"]) li * {
17 | @include mv2;
18 | @include pl2;
19 | }
20 |
--------------------------------------------------------------------------------
/blocks/tachyons/_preformatted.scss:
--------------------------------------------------------------------------------
1 | > .wp-block-preformatted,
2 | > .wp-block-verse {
3 | @include pa3;
4 | }
5 |
--------------------------------------------------------------------------------
/blocks/tachyons/_wp-block-separator.scss:
--------------------------------------------------------------------------------
1 | > .wp-block-separator {
2 | border-width: 0.025rem;
3 |
4 | @include bb-0;
5 | @include bl-0;
6 | @include br-0;
7 | @include b--near-white;
8 | @include o-30;
9 | @include bg-transparent;
10 |
11 | & .is-style-wide {
12 | @include w-80-l;
13 | }
14 |
15 | & .is-style-dots {
16 | @include w-30-l;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/blocks/vanilla/_blocks.scss:
--------------------------------------------------------------------------------
1 | @import "general";
2 | @import "wp-block-audio";
3 | @import "wp-block-button";
4 | @import "wp-block-columns";
5 | @import "wp-block-cover";
6 | @import "wp-block-embed";
7 | @import "wp-block-gallery";
8 | @import "wp-block-image";
9 | @import "wp-block-media";
10 | @import "wp-block-pullquote";
11 | @import "wp-block-quote";
12 | @import "wp-block-separator";
13 | @import "wp-block-table";
14 |
--------------------------------------------------------------------------------
/blocks/vanilla/_general.scss:
--------------------------------------------------------------------------------
1 | @for $i from 1 to 7 {
2 | h#{$i} {
3 | @include debug(h#{$i});
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/blocks/vanilla/_wp-block-audio.scss:
--------------------------------------------------------------------------------
1 | .wp-block-audio {
2 | audio {
3 | display: block;
4 | margin-left: auto;
5 | margin-right: auto;
6 | border-radius: block_option("wp-block-audio", "border-radius");
7 | }
8 |
9 | figcaption {
10 | text-align: center;
11 | font-style: italic;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/blocks/vanilla/_wp-block-table.scss:
--------------------------------------------------------------------------------
1 | .wp-block-table {
2 | display: block;
3 | clear: both;
4 | margin: block_spacer() auto;
5 | padding: 0;
6 | background: transparent;
7 | border-bottom: 1px solid block_color(black);
8 | opacity: 0.6;
9 |
10 | &.is-style-wide {
11 | max-width: 80vw;
12 | width: 80vw;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/global/_mixins.scss:
--------------------------------------------------------------------------------
1 | @mixin contain_block() {
2 | width: 100%;
3 | max-width: block_content_max_width();
4 | margin-left: auto;
5 | margin-right: auto;
6 | padding-left: block_spacer();
7 | padding-right: block_spacer();
8 | margin-top: block_vertical_margin();
9 | margin-bottom: block_vertical_margin();
10 | }
11 |
12 | @mixin blocks-hover-transition() {
13 | transition:
14 | color 200ms ease-in-out,
15 | background-color 200ms ease-in-out;
16 | }
17 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/screenshot.png
--------------------------------------------------------------------------------
/vendor/bootstrap/.babelrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | [
4 | '@babel/env',
5 | {
6 | loose: true,
7 | modules: false,
8 | exclude: ['transform-typeof-symbol']
9 | }
10 | ]
11 | ],
12 | plugins: [
13 | '@babel/plugin-proposal-object-rest-spread'
14 | ],
15 | env: {
16 | test: {
17 | plugins: [ 'istanbul' ]
18 | }
19 | }
20 | };
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.browserslistrc:
--------------------------------------------------------------------------------
1 | # https://github.com/browserslist/browserslist#readme
2 |
3 | >= 1%
4 | last 1 major version
5 | not dead
6 | Chrome >= 45
7 | Firefox >= 38
8 | Edge >= 12
9 | iOS >= 9
10 | Safari >= 9
11 | Android >= 4.4
12 | Opera >= 30
13 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*.min.js
2 | **/dist/
3 | **/vendor/
4 | /_gh_pages/
5 | /js/coverage/
6 | /package.js
7 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.gitattributes:
--------------------------------------------------------------------------------
1 | # Enforce Unix newlines
2 | *.css text eol=lf
3 | *.html text eol=lf
4 | *.js text eol=lf
5 | *.json text eol=lf
6 | *.md text eol=lf
7 | *.rb text eol=lf
8 | *.scss text eol=lf
9 | *.svg text eol=lf
10 | *.txt text eol=lf
11 | *.xml text eol=lf
12 | *.yml text eol=lf
13 |
14 | # Don't diff or textually merge source maps
15 | *.map binary
16 |
17 | bootstrap.css linguist-vendored=false
18 | bootstrap.js linguist-vendored=false
19 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | *.js @twbs/js-review
2 | *.css @twbs/css-review
3 | *.scss @twbs/css-review
4 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.github/ISSUE_TEMPLATE/feature.md:
--------------------------------------------------------------------------------
1 | Before opening:
2 |
3 | - [Search for duplicate or closed issues](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue)
4 | - Read the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md)
5 |
6 | Feature requests must include:
7 |
8 | - As much detail as possible for what we should add and why it's important to Bootstrap
9 | - Relevant links to prior art, screenshots, or live demos whenever possible
10 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.github/SUPPORT.md:
--------------------------------------------------------------------------------
1 | ### Bug reports
2 |
3 | See the [contributing guidelines](CONTRIBUTING.md) for sharing bug reports.
4 |
5 | ### How-to
6 |
7 | For general troubleshooting or help getting started:
8 |
9 | - Join [the official Slack room](https://bootstrap-slack.herokuapp.com/).
10 | - Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
11 | - Ask and explore Stack Overflow with the [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4) tag.
12 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.stylelintignore:
--------------------------------------------------------------------------------
1 | **/*.min.css
2 | **/dist/
3 | **/vendor/
4 | /_gh_pages/
5 |
--------------------------------------------------------------------------------
/vendor/bootstrap/.stylelintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "stylelint-config-twbs-bootstrap/scss"
4 | ],
5 | "rules": {
6 | "property-blacklist": [
7 | "border-radius",
8 | "border-top-left-radius",
9 | "border-top-right-radius",
10 | "border-bottom-right-radius",
11 | "border-bottom-left-radius",
12 | "transition"
13 | ]
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/bootstrap/CNAME:
--------------------------------------------------------------------------------
1 | getbootstrap.com
2 |
--------------------------------------------------------------------------------
/vendor/bootstrap/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | group :development, :test do
4 | gem 'jekyll', '~> 3.8.5'
5 | gem 'jekyll-redirect-from', '~> 0.14.0'
6 | gem 'jekyll-sitemap', '~> 1.2.0'
7 | gem 'jekyll-toc', '~> 0.9.1'
8 | gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
9 | end
10 |
--------------------------------------------------------------------------------
/vendor/bootstrap/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Reporting Security Issues
2 |
3 | The Bootstrap team and community take security issues in Bootstrap seriously. We appreciate your efforts to responsibly disclose your findings, and will make every effort to acknowledge your contributions.
4 |
5 | To report a security issue, email [security@getbootstrap.com](mailto:security@getbootstrap.com) and include the word "SECURITY" in the subject line.
6 |
7 | We'll endeavor to respond quickly, and will keep you updated throughout the process.
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/build/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": false,
4 | "node": true
5 | },
6 | "parserOptions": {
7 | "sourceType": "script"
8 | },
9 | "extends": "../.eslintrc.json",
10 | "rules": {
11 | "consistent-return": "off",
12 | "func-style": "off",
13 | "no-console": "off",
14 | "no-magic-numbers": "off",
15 | "no-process-env": "off",
16 | "no-process-exit": "off",
17 | "no-sync": "off",
18 | "spaced-comment": "off"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/build/banner.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const pkg = require('../package.json')
4 | const year = new Date().getFullYear()
5 |
6 | function getBanner(pluginFilename) {
7 | return `/*!
8 | * Bootstrap${pluginFilename ? ` ${pluginFilename}` : ''} v${pkg.version} (${pkg.homepage})
9 | * Copyright 2011-${year} ${pkg.author}
10 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
11 | */`
12 | }
13 |
14 | module.exports = getBanner
15 |
--------------------------------------------------------------------------------
/vendor/bootstrap/build/postcss.config.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | module.exports = (ctx) => ({
4 | map: ctx.file.dirname.includes('examples') ? false : {
5 | inline: false,
6 | annotation: true,
7 | sourcesContent: true
8 | },
9 | plugins: {
10 | autoprefixer: {
11 | cascade: false
12 | }
13 | }
14 | })
15 |
--------------------------------------------------------------------------------
/vendor/bootstrap/js/tests/integration/bundle.js:
--------------------------------------------------------------------------------
1 | import 'popper.js'
2 | import bootstrap from '../../../dist/js/bootstrap'
3 |
4 | window.addEventListener('load', () => {
5 | Array.from(document.querySelectorAll('[data-toggle="tooltip"]'))
6 | .map((tooltipNode) => new bootstrap.Tooltip(tooltipNode))
7 | })
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/js/tests/integration/rollup.bundle.js:
--------------------------------------------------------------------------------
1 | /* eslint-env node */
2 |
3 | const resolve = require('rollup-plugin-node-resolve')
4 | const commonjs = require('rollup-plugin-commonjs')
5 | const babel = require('rollup-plugin-babel')
6 |
7 | module.exports = {
8 | input: 'js/tests/integration/bundle.js',
9 | output: {
10 | file: 'js/coverage/bundle.js',
11 | format: 'iife'
12 | },
13 | plugins: [
14 | resolve(),
15 | commonjs(),
16 | babel({
17 | exclude: 'node_modules/**'
18 | })
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/_jumbotron.scss:
--------------------------------------------------------------------------------
1 | .jumbotron {
2 | padding: $jumbotron-padding ($jumbotron-padding / 2);
3 | margin-bottom: $jumbotron-padding;
4 | color: $jumbotron-color;
5 | background-color: $jumbotron-bg;
6 | @include border-radius($border-radius-lg);
7 |
8 | @include media-breakpoint-up(sm) {
9 | padding: ($jumbotron-padding * 2) $jumbotron-padding;
10 | }
11 | }
12 |
13 | .jumbotron-fluid {
14 | padding-right: 0;
15 | padding-left: 0;
16 | @include border-radius(0);
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/_media.scss:
--------------------------------------------------------------------------------
1 | .media {
2 | display: flex;
3 | align-items: flex-start;
4 | }
5 |
6 | .media-body {
7 | flex: 1;
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/_transitions.scss:
--------------------------------------------------------------------------------
1 | .fade {
2 | @include transition($transition-fade);
3 |
4 | &:not(.show) {
5 | opacity: 0;
6 | }
7 | }
8 |
9 | .collapse {
10 | &:not(.show) {
11 | display: none;
12 | }
13 | }
14 |
15 | .collapsing {
16 | position: relative;
17 | height: 0;
18 | overflow: hidden;
19 | @include transition($transition-collapse);
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/bootstrap-reboot.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
3 | * Copyright 2011-2019 The Bootstrap Authors
4 | * Copyright 2011-2019 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 | */
8 |
9 | @import "functions";
10 | @import "variables";
11 | @import "mixins";
12 | @import "reboot";
13 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_alert.scss:
--------------------------------------------------------------------------------
1 | @mixin alert-variant($background, $border, $color) {
2 | color: $color;
3 | @include gradient-bg($background);
4 | border-color: $border;
5 |
6 | hr {
7 | border-top-color: darken($border, 5%);
8 | }
9 |
10 | .alert-link {
11 | color: darken($color, 10%);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_badge.scss:
--------------------------------------------------------------------------------
1 | @mixin badge-variant($bg) {
2 | color: color-yiq($bg);
3 | background-color: $bg;
4 |
5 | @at-root a#{&} {
6 | @include hover-focus {
7 | color: color-yiq($bg);
8 | background-color: darken($bg, 10%);
9 | }
10 |
11 | &:focus,
12 | &.focus {
13 | outline: 0;
14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_clearfix.scss:
--------------------------------------------------------------------------------
1 | @mixin clearfix() {
2 | &::after {
3 | display: block;
4 | clear: both;
5 | content: "";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @mixin float-left {
4 | float: left !important;
5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
6 | }
7 | @mixin float-right {
8 | float: right !important;
9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
10 | }
11 | @mixin float-none {
12 | float: none !important;
13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_lists.scss:
--------------------------------------------------------------------------------
1 | // Lists
2 |
3 | // Unstyled keeps list items block level, just removes default browser padding and list-style
4 | @mixin list-unstyled {
5 | padding-left: 0;
6 | list-style: none;
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_nav-divider.scss:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {
6 | height: 0;
7 | margin: $margin-y 0;
8 | overflow: hidden;
9 | border-top: 1px solid $color;
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_resize.scss:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | @mixin resizable($direction) {
4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
5 | resize: $direction; // Options: horizontal, vertical, both
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_size.scss:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | @mixin size($width, $height: $width) {
4 | width: $width;
5 | height: $height;
6 | @include deprecate("`size()`", "v4.3.0", "v5");
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_text-emphasis.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | // Typography
4 |
5 | @mixin text-emphasis-variant($parent, $color) {
6 | #{$parent} {
7 | color: $color !important;
8 | }
9 | @if $emphasized-link-hover-darken-percentage != 0 {
10 | a#{$parent} {
11 | @include hover-focus {
12 | color: darken($color, $emphasized-link-hover-darken-percentage) !important;
13 | }
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_text-hide.scss:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | @mixin text-hide($ignore-warning: false) {
3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4 | font: 0/0 a;
5 | color: transparent;
6 | text-shadow: none;
7 | background-color: transparent;
8 | border: 0;
9 |
10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_text-truncate.scss:
--------------------------------------------------------------------------------
1 | // Text truncate
2 | // Requires inline-block or block for proper styling
3 |
4 | @mixin text-truncate() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_transition.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable property-blacklist
2 | @mixin transition($transition...) {
3 | @if $enable-transitions {
4 | @if length($transition) == 0 {
5 | transition: $transition-base;
6 | } @else {
7 | transition: $transition;
8 | }
9 | }
10 |
11 | @if $enable-prefers-reduced-motion-media-query {
12 | @media (prefers-reduced-motion: reduce) {
13 | transition: none;
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/mixins/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | // Visibility
4 |
5 | @mixin invisible($visibility) {
6 | visibility: $visibility !important;
7 | @include deprecate("`invisible()`", "v4.3.0", "v5");
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_align.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | .align-baseline { vertical-align: baseline !important; } // Browser default
4 | .align-top { vertical-align: top !important; }
5 | .align-middle { vertical-align: middle !important; }
6 | .align-bottom { vertical-align: bottom !important; }
7 | .align-text-bottom { vertical-align: text-bottom !important; }
8 | .align-text-top { vertical-align: text-top !important; }
9 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_background.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $color, $value in $theme-colors {
4 | @include bg-variant(".bg-#{$color}", $value);
5 | }
6 |
7 | @if $enable-gradients {
8 | @each $color, $value in $theme-colors {
9 | @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
10 | }
11 | }
12 |
13 | .bg-white {
14 | background-color: $white !important;
15 | }
16 |
17 | .bg-transparent {
18 | background-color: transparent !important;
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $breakpoint in map-keys($grid-breakpoints) {
4 | @include media-breakpoint-up($breakpoint) {
5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6 |
7 | .float#{$infix}-left { float: left !important; }
8 | .float#{$infix}-right { float: right !important; }
9 | .float#{$infix}-none { float: none !important; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_overflow.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $value in $overflows {
4 | .overflow-#{$value} { overflow: $value !important; }
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_screenreaders.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Screenreaders
3 | //
4 |
5 | .sr-only {
6 | @include sr-only();
7 | }
8 |
9 | .sr-only-focusable {
10 | @include sr-only-focusable();
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_shadows.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | .shadow-sm { box-shadow: $box-shadow-sm !important; }
4 | .shadow { box-shadow: $box-shadow !important; }
5 | .shadow-lg { box-shadow: $box-shadow-lg !important; }
6 | .shadow-none { box-shadow: none !important; }
7 |
--------------------------------------------------------------------------------
/vendor/bootstrap/scss/utilities/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | //
4 | // Visibility utilities
5 | //
6 |
7 | .visible {
8 | visibility: visible !important;
9 | }
10 |
11 | .invisible {
12 | visibility: hidden !important;
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_data/colors.yml:
--------------------------------------------------------------------------------
1 | - name: blue
2 | hex: "#007bff"
3 | - name: indigo
4 | hex: "#6610f2"
5 | - name: purple
6 | hex: "#6f42c1"
7 | - name: pink
8 | hex: "#e83e8c"
9 | - name: red
10 | hex: "#dc3545"
11 | - name: orange
12 | hex: "#fd7e14"
13 | - name: yellow
14 | hex: "#ffc107"
15 | - name: green
16 | hex: "#28a745"
17 | - name: teal
18 | hex: "#20c997"
19 | - name: cyan
20 | hex: "#17a2b8"
21 | - name: white
22 | hex: "#fff"
23 | - name: gray
24 | hex: "#868e96"
25 | - name: gray-dark
26 | hex: "#343a40"
27 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_data/core-team.yml:
--------------------------------------------------------------------------------
1 | - name: Mark Otto
2 | user: mdo
3 |
4 | - name: Jacob Thornton
5 | user: fat
6 |
7 | - name: Chris Rebert
8 | user: cvrebert
9 |
10 | - name: XhmikosR
11 | user: xhmikosr
12 |
13 | - name: Patrick H. Lauke
14 | user: patrickhlauke
15 |
16 | - name: Gleb Mazovetskiy
17 | user: glebm
18 |
19 | - name: Johann-S
20 | user: johann-s
21 |
22 | - name: Andres Galante
23 | user: andresgalante
24 |
25 | - name: Martijn Cuppens
26 | user: martijncuppens
27 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_data/grays.yml:
--------------------------------------------------------------------------------
1 | - name: 100
2 | hex: "#f8f9fa"
3 | - name: 200
4 | hex: "#e9ecef"
5 | - name: 300
6 | hex: "#dee2e6"
7 | - name: 400
8 | hex: "#ced4da"
9 | - name: 500
10 | hex: "#adb5bd"
11 | - name: 600
12 | hex: "#868e96"
13 | - name: 700
14 | hex: "#495057"
15 | - name: 800
16 | hex: "#343a40"
17 | - name: 900
18 | hex: "#212529"
19 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_data/theme-colors.yml:
--------------------------------------------------------------------------------
1 | - name: primary
2 | hex: "#007bff"
3 | - name: secondary
4 | hex: "#868e96"
5 | - name: success
6 | hex: "#28a745"
7 | - name: danger
8 | hex: "#dc3545"
9 | - name: warning
10 | hex: "#ffc107"
11 | - name: info
12 | hex: "#17a2b8"
13 | - name: light
14 | hex: "#f8f9fa"
15 | - name: dark
16 | hex: "#343a40"
17 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/ads.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/analytics.html:
--------------------------------------------------------------------------------
1 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/callout-info-prefersreducedmotion.md:
--------------------------------------------------------------------------------
1 | {% capture callout %}
2 | The animation effect of this component is dependent on the `prefers-reduced-motion` media query. See the [reduced motion section of our accessibility documentation]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/accessibility/#reduced-motion).
3 | {% endcapture %}
4 | {% include callout.html content=callout type="info" %}
5 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/callout.html:
--------------------------------------------------------------------------------
1 | {%- comment -%}
2 | Usage: include callout.html content=callout type="type",
3 | where content is a capture with the content
4 | and type is one of: info (default), danger, warning
5 | {%- endcomment -%}
6 | {%- assign css_class = include.type | default: "info" -%}
7 |
8 | {{- include.content | markdownify -}}
9 |
10 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/icons/download.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/icons/import.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/icons/lightning.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/icons/menu.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_includes/skippy.html:
--------------------------------------------------------------------------------
1 |
2 | Skip to main content
3 |
4 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {% include header.html %}
5 |
6 |
7 | {% include skippy.html %}
8 |
9 | {% include docs-navbar.html %}
10 |
11 | {% if page.layout == "simple" %}
12 | {{ content }}
13 | {% else %}
14 |
15 | {{ content }}
16 |
17 | {% endif %}
18 |
19 | {% include footer.html %}
20 | {% include scripts.html %}
21 |
22 |
23 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/_layouts/home.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {% include header.html %}
5 |
6 |
7 | {% include skippy.html %}
8 |
9 | {% include docs-navbar.html %}
10 |
11 | {{ content }}
12 |
13 | {% include footer.html %}
14 | {% include scripts.html %}
15 |
16 |
17 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/brand/bootstrap-social-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/brand/bootstrap-social-logo.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/brand/bootstrap-social.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/brand/bootstrap-social.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/bootstrap-themes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/bootstrap-themes.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/bootstrap-themes@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/bootstrap-themes@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/album.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/album.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/album@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/album@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/blog.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/blog@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/blog@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/carousel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/carousel.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/carousel@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/carousel@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/checkout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/checkout.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/checkout@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/checkout@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/cover.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/cover@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/cover@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/dashboard.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/dashboard@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/dashboard@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/floating-labels.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/floating-labels.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/floating-labels@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/floating-labels@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/grid.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/grid@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/grid@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/jumbotron.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/jumbotron.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/jumbotron@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/jumbotron@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-bottom.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-bottom@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-bottom@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-fixed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-fixed.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-fixed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-fixed@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-static.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-static.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-static@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbar-static@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbars.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbars.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbars@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/navbars@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/offcanvas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/offcanvas.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/offcanvas@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/offcanvas@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/pricing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/pricing.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/pricing@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/pricing@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/product.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/product.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/product@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/product@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sign-in.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sign-in.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sign-in@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sign-in@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/starter-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/starter-template.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/starter-template@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/starter-template@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer-navbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer-navbar.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer-navbar@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer-navbar@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/examples/sticky-footer@2x.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/android-chrome-192x192.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/android-chrome-512x512.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/apple-touch-icon.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/browserconfig.xml:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 |
5 |
6 |
7 |
8 | #563d7c
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/favicon-16x16.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/favicon-32x32.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-144x144.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-150x150.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-310x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-310x150.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-310x310.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/docs/4.3/assets/img/favicons/mstile-70x70.png
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/scss/_anchor.scss:
--------------------------------------------------------------------------------
1 | .anchorjs-link {
2 | font-weight: 400;
3 | color: rgba($link-color, .5);
4 | @include transition(color .15s ease-in-out, opacity .15s ease-in-out);
5 |
6 | &:hover {
7 | color: $link-color;
8 | text-decoration: none;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/scss/_browser-bugs.scss:
--------------------------------------------------------------------------------
1 | // Wall of Browser Bugs
2 | //
3 | // Better display for the responsive table on the Wall of Browser Bugs.
4 |
5 | .bd-browser-bugs {
6 | td p {
7 | margin-bottom: 0;
8 | }
9 | th:first-child {
10 | width: 18%;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/scss/_placeholder-img.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Placeholder svg used in the docs.
3 | //
4 |
5 | // Remember to update `site/_layouts/examples.html` too if this changes!
6 |
7 | .bd-placeholder-img {
8 | @include font-size(1.125rem);
9 | text-anchor: middle;
10 | user-select: none;
11 | }
12 |
13 | .bd-placeholder-img-lg {
14 | @include font-size(3.5rem);
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/assets/scss/_skippy.scss:
--------------------------------------------------------------------------------
1 | .skippy {
2 | display: block;
3 | padding: 1em;
4 | color: $white;
5 | text-align: center;
6 | background-color: $bd-purple;
7 | outline: 0;
8 |
9 | @include hover {
10 | color: $white;
11 | }
12 | }
13 |
14 | .skippy-text {
15 | padding: .5em;
16 | outline: 1px dotted;
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/.stylelintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "stylelint-config-twbs-bootstrap/css"
4 | ],
5 | "rules": {
6 | "at-rule-no-vendor-prefix": null,
7 | "comment-empty-line-before": null,
8 | "media-feature-name-no-vendor-prefix": null,
9 | "property-blacklist": null,
10 | "property-no-vendor-prefix": null,
11 | "selector-no-qualifying-type": null,
12 | "selector-no-vendor-prefix": null,
13 | "value-no-vendor-prefix": null
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/checkout/form-validation.css:
--------------------------------------------------------------------------------
1 | .container {
2 | max-width: 960px;
3 | }
4 |
5 | .lh-condensed { line-height: 1.25; }
6 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/grid/grid.css:
--------------------------------------------------------------------------------
1 | .themed-grid-col {
2 | padding-top: 15px;
3 | padding-bottom: 15px;
4 | background-color: rgba(86, 61, 124, .15);
5 | border: 1px solid rgba(86, 61, 124, .2);
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/jumbotron/jumbotron.css:
--------------------------------------------------------------------------------
1 | /* Move down content because we have a fixed navbar that is 3.5rem tall */
2 | body {
3 | padding-top: 3.5rem;
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/navbar-fixed/navbar-top-fixed.css:
--------------------------------------------------------------------------------
1 | /* Show it is fixed to the top */
2 | body {
3 | min-height: 75rem;
4 | padding-top: 4.5rem;
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/navbar-static/navbar-top.css:
--------------------------------------------------------------------------------
1 | /* Show it's not fixed to the top */
2 | body {
3 | min-height: 75rem;
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/navbars/navbar.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding-bottom: 20px;
3 | }
4 |
5 | .navbar {
6 | margin-bottom: 20px;
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/offcanvas/offcanvas.js:
--------------------------------------------------------------------------------
1 | (function () {
2 | 'use strict'
3 |
4 | document.querySelector('[data-toggle="offcanvas"]').addEventListener('click', function () {
5 | document.querySelector('.offcanvas-collapse').classList.toggle('open')
6 | })
7 | }())
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/pricing/pricing.css:
--------------------------------------------------------------------------------
1 | html {
2 | font-size: 14px;
3 | }
4 | @media (min-width: 768px) {
5 | html {
6 | font-size: 16px;
7 | }
8 | }
9 |
10 | .container {
11 | max-width: 960px;
12 | }
13 |
14 | .pricing-header {
15 | max-width: 700px;
16 | }
17 |
18 | .card-deck .card {
19 | min-width: 220px;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/starter-template/starter-template.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding-top: 5rem;
3 | }
4 | .starter-template {
5 | padding: 3rem 1.5rem;
6 | text-align: center;
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/sticky-footer-navbar/sticky-footer-navbar.css:
--------------------------------------------------------------------------------
1 | /* Custom page CSS
2 | -------------------------------------------------- */
3 | /* Not required for template or sticky footer method. */
4 |
5 | main > .container {
6 | padding: 60px 15px 0;
7 | }
8 |
9 | .footer {
10 | background-color: #f5f5f5;
11 | }
12 |
13 | .footer > .container {
14 | padding-right: 15px;
15 | padding-left: 15px;
16 | }
17 |
18 | code {
19 | font-size: 80%;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/examples/sticky-footer/sticky-footer.css:
--------------------------------------------------------------------------------
1 | /* Custom page CSS
2 | -------------------------------------------------- */
3 | /* Not required for template or sticky footer method. */
4 |
5 | .container {
6 | width: auto;
7 | max-width: 680px;
8 | padding: 0 15px;
9 | }
10 |
11 | .footer {
12 | background-color: #f5f5f5;
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/docs/4.3/utilities/close-icon.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: docs
3 | title: Close icon
4 | description: Use a generic close icon for dismissing content like modals and alerts.
5 | group: utilities
6 | ---
7 |
8 | **Be sure to include text for screen readers**, as we've done with `aria-label`.
9 |
10 | {% capture example %}
11 |
14 | {% endcapture %}
15 | {% include example.html content=example %}
16 |
--------------------------------------------------------------------------------
/vendor/bootstrap/site/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kellymears/wp-block-styles-project/b3b638b18adac4940ad19637b621b4128836d060/vendor/bootstrap/site/favicon.ico
--------------------------------------------------------------------------------
/vendor/bootstrap/site/robots.txt:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 | # www.robotstxt.org/
5 |
6 | # Allow crawling of all content
7 | User-agent: *
8 | Disallow:{% if jekyll.environment != "production" %} /{% endif %}
9 | Sitemap: {{ site.url }}/sitemap.xml
10 |
--------------------------------------------------------------------------------
/vendor/bulma/.gitignore:
--------------------------------------------------------------------------------
1 | # Files
2 | .DS_Store
3 | .ruby-version
4 | test.sass
5 | npm-debug.log
6 |
7 | # Folders
8 | .idea/
9 | .sass-cache
10 | _gh_pages
11 | _site
12 | node_modules
13 | test/output/
14 |
--------------------------------------------------------------------------------
/vendor/bulma/.travis.yml:
--------------------------------------------------------------------------------
1 | script:
2 | - "test/sass-compile-tester.sh"
3 |
4 | language: sass
5 | before_install:
6 | - gem install sass
--------------------------------------------------------------------------------
/vendor/bulma/bulma.sass:
--------------------------------------------------------------------------------
1 | @import "sass/utilities/_all"
2 | @import "sass/base/_all"
3 | @import "sass/elements/_all"
4 | @import "sass/components/_all"
5 | @import "sass/grid/_all"
6 | @import "sass/layout/_all"
7 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015-ie"]
3 | }
4 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/.gitignore:
--------------------------------------------------------------------------------
1 | # Files
2 |
3 | .DS_Store
4 | .jekyll-metadata
5 | _config.local.yml
6 | _config.version.yml
7 | bulma-test.sass
8 | bulma-test.scss
9 | bulma-test.css
10 | bulma-website-local.sass
11 | css/bulma-test.css
12 | css/bulma-docs.css.map
13 | PUBLISHING.md
14 | npm-debug.log
15 | test.html
16 | test.sass
17 | test.scss
18 |
19 | # Folders
20 |
21 | .sass-cache
22 | /bulma
23 | /icons
24 | /styles/node_modules
25 | /versions
26 | _site
27 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/CNAME:
--------------------------------------------------------------------------------
1 | bulma.io
--------------------------------------------------------------------------------
/vendor/bulma/docs/_config.yml:
--------------------------------------------------------------------------------
1 | # Meta
2 |
3 | env: "production"
4 | docs_file: "bulma-docs.min"
5 |
6 | # Build
7 |
8 | markdown: kramdown
9 | permalink: pretty
10 | url: https://bulma.io
11 | exclude: ['icons', 'node_modules', 'templates', '.babelrc', 'bulma-docs.sass', 'docker-compose.yml', 'package.json', 'yarn.lock']
12 |
13 | # Variables
14 |
15 | download: https://github.com/jgthms/bulma/releases/download/0.7.0/bulma-0.7.0.zip
16 | version: 0.7.0
17 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_data/icons.json:
--------------------------------------------------------------------------------
1 | {
2 | "fontawesome4": "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css",
3 | "fontawesome5": "https://use.fontawesome.com/releases/v5.3.1/js/all.js",
4 | "iconic": "https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic.min.css",
5 | "ionicons": "https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css",
6 | "mdi": "https://cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css"
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_data/variables/elements/image.json:
--------------------------------------------------------------------------------
1 | {
2 | "by_name": {
3 | "$dimensions": {
4 | "name": "$dimensions",
5 | "value": "16 24 32 48 64 96 128",
6 | "type": "string"
7 | }
8 | },
9 | "list": [
10 | "$dimensions"
11 | ],
12 | "file_path": "elements/image.sass"
13 | }
--------------------------------------------------------------------------------
/vendor/bulma/docs/_data/variables/grid/columns.json:
--------------------------------------------------------------------------------
1 | {
2 | "by_name": {
3 | "$column-gap": {
4 | "name": "$column-gap",
5 | "value": "0.75rem",
6 | "type": "size"
7 | }
8 | },
9 | "list": [
10 | "$column-gap"
11 | ],
12 | "file_path": "grid/columns.sass"
13 | }
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/book/book-cover.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/bp/desktop.html:
--------------------------------------------------------------------------------
1 | >= {{ site.data.breakpoints.desktop.from }}px
2 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/bp/fullhd.html:
--------------------------------------------------------------------------------
1 | >= {{ site.data.breakpoints.fullhd.from }}px
2 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/bp/touch.html:
--------------------------------------------------------------------------------
1 | < {{ site.data.breakpoints.desktop.from }}px
2 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/bp/widescreen.html:
--------------------------------------------------------------------------------
1 | >= {{ site.data.breakpoints.widescreen.from }}px
2 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/black-bis.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 7%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/black-ter.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 14%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/black.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 4%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/blue.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(217, 71%, 53%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/cyan.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(204, 86%, 53%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/green.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(141, 71%, 48%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/grey-dark.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 29%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/grey-darker.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 21%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/grey-light.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 71%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/grey-lighter.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 86%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/grey.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 48%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/orange.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(14, 100%, 53%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/purple.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(271, 100%, 71%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/red.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(348, 100%, 61%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/turquoise.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(171, 100%, 41%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/white-bis.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 98%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/white-ter.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 96%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/white.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(0, 0%, 100%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/color/yellow.html:
--------------------------------------------------------------------------------
1 |
2 | hsl(48, 100%, 67%)
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/components/anchors.html:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/components/figure.html:
--------------------------------------------------------------------------------
1 |
2 | {%
3 | include elements/responsive-image-2x.html
4 | path=include.path
5 | extension=include.extension
6 | alt=include.alt
7 | width=include.width
8 | height=include.height
9 | %}
10 |
11 | {{ include.caption }}
12 |
13 |
14 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/components/step.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% include elements/anchor.html name=include.title %}
4 |
5 |
6 |
7 | {{ include.content }}
8 |
9 |
10 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/anchor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{ include.name }}
6 |
7 |
8 | #
9 |
10 |
11 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/color-square.html:
--------------------------------------------------------------------------------
1 |
2 | {{ include.value }}
3 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/drawing.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/external-link.html:
--------------------------------------------------------------------------------
1 |
6 | {{ include.text }}
7 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/patreon-item.html:
--------------------------------------------------------------------------------
1 |
2 | {{ backer.name }} |
3 |
4 |
5 | {% if backer.twitter != "" %}
6 |
7 | @{{ backer.twitter }}
8 |
9 | {% endif %}
10 | |
11 |
12 |
13 | {% if backer.website_url %}
14 |
15 | {{ backer.website_name }}
16 |
17 | {% endif %}
18 | |
19 |
20 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/patreon.html:
--------------------------------------------------------------------------------
1 |
2 | {%
3 | include elements/responsive-image.html
4 | path="become-a-patron"
5 | extension="png"
6 | alt="Become a Patron"
7 | width="148"
8 | height="36"
9 | %}
10 |
11 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/responsive-image-2x.html:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/responsive-image.html:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/elements/tw-button.html:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
10 |
11 | {{ include.label }}
12 |
13 |
14 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/footer/contribute.html:
--------------------------------------------------------------------------------
1 |
4 |
5 |
9 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/footer/link.html:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/footer/main.html:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/global/deprecated.html:
--------------------------------------------------------------------------------
1 | {% if site.deprecated %}
2 |
8 | {% endif %}
9 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/global/footer.html:
--------------------------------------------------------------------------------
1 | {% include footer/support.html %}
2 |
3 | {% include global/native.html %}
4 |
5 | {% include book/book-banner.html %}
6 |
7 | {% include global/newsletter.html %}
8 |
9 | {% include footer/main.html %}
10 |
11 | {% include book/book-modal.html %}
12 |
13 | {% include global/scripts.html %}
14 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/global/side-sponsor.html:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
16 |
17 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/index/usual.html:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/layout/main-close.html:
--------------------------------------------------------------------------------
1 | {% assign current_category = page.doc-tab %}
2 | {% assign current_link_id = page.breadcrumb | last %}
3 | {% assign category_links = site.data.links.categories[current_category] %}
4 |
5 |
6 |
7 |
8 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/layout/main-open.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/bulma/docs/_includes/subnav/subnav-grid.html:
--------------------------------------------------------------------------------
1 |