Bootstrap Brain Framework (BSB)

2.0.4 · active · verified Sun Apr 19

Bootstrap Brain (BSB) Framework, currently at version 2.0.4, is an extension layer built on top of Bootstrap 5 (specifically v5.3.3). It aims to provide additional pre-styled basic components and templates, augmenting Bootstrap's core capabilities without fundamentally altering its underlying structure. The framework focuses on delivering readily usable HTML and CSS patterns, making it suitable for rapid web development. It differentiates itself by offering a curated collection of free components and templates directly available for download, streamlining the design and development process for projects utilizing Bootstrap 5. Its release cadence aligns with Bootstrap's ecosystem, providing updates and new assets that are compatible with the latest stable Bootstrap releases. Primarily, BSB is a styling and templating resource rather than a JavaScript library for programmatic use.

Common errors

Warnings

Install

Imports

Quickstart

Demonstrates how to integrate Bootstrap Brain's CSS alongside Bootstrap 5 in a basic HTML page, showcasing a custom BSB class.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BSB Quickstart</title>
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
    <!-- BSB Framework CSS -->
    <link rel="stylesheet" href="https://unpkg.com/bs-brain/bsb.css" />
</head>
<body>
    <div class="container mt-5">
        <h1 class="mb-4">Welcome to Bootstrap Brain!</h1>
        <div class="bsb-section-title">
            <h2>An Extended Bootstrap Section</h2>
            <p>This text is styled with a BSB-specific class.</p>
        </div>
        <button class="btn btn-primary bsb-btn-xl">BSB Styled Button</button>
        <p class="mt-3">Explore <a href="https://bootstrapbrain.com/component-category/free/" target="_blank">BSB Components</a>.</p>
    </div>

    <!-- Bootstrap Bundle with Popper -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>

view raw JSON →