Get boba!
boba Version 1.7.2
  • Introduction
  • Installation
  • Customize
  • Compatibility
  • Changelog
  • Breakpoints
  • Colors
  • Typography
  • Containers
  • Grid
  • Navbar
  • Sections
  • Sidebar
  • Banners
  • Breadcrumbs
  • Cards
  • Collapsible
  • Messages
  • Notifications
  • Pagination
  • Tabs
  • Tables
  • Blockquotes
  • Buttons
  • Code
  • Counters
  • Descriptions
  • Dividers
  • Labels
  • Lists
  • Progress
  • Checkboxes
  • Inputs
  • Radios
  • Selects
  • Switches
  • Textareas
  • Animations
  • Background
  • Borders
  • Display
  • Flex
  • Images
  • Shadows
  • Shapes
  • Sizing
  • Spacing
  • Text

Elements

Learn how to build your website with boba!

Buttons

Buttons come in all of boba's colors.

<button class="green"> Green </button>

Sizes

Buttons can be resized.
<button class="small"> Small </button>
<button> Default </button>
<button class="medium"> Medium </button>
<button class="large"> Large </button>

Styles

Change the look of your buttons with ease.

Rounded

Make your buttons pill-shaped using the .rounded class.

<button class="green rounded"> Green </button>

Inverted

Use the .inverted class to have the color of your button appear on hover and click.

<button class="green inverted"> Green </button>

Outlined

Add the .outlined class to make your buttons simple colored outlines.

<button class="green outlined"> Green </button>

Combinations

Use the .rounded class with either the .inverted or .outlined class to create the perfect button.
<button class="red rounded inverted"> Red </button>
<button class="green rounded outlined"> Green </button>

States

Buttons can be disabled using the disabled attribute.
<button disabled> Disabled </button>

Classes

Links and inputs can be styled to look like buttons by adding the .button class.
Link Button
<button> Default Button </button>
<a class="button" href="#"> Link Button </a>
<input type="button" value="Input Button">