GitHub

ridestyler.ui

DOCS
  • Installation
  • Custom version
  • Browser support
  • Javascript
  • What's new
  • Typography
  • Links
  • Headers
  • Tables
  • Buttons
  • Forms
  • Icons
  • Labels
  • Code
  • Media
  • Brand
  • Flexbox grid
  • Responsive
  • Navbar
  • Accordions
  • Avatars
  • Badges
  • Bars
  • Breadcrumbs
  • Cards
  • Chips
  • Empty states
  • Menu
  • Modals
  • Nav
  • Pagination
  • Panels
  • Popovers
  • Steps
  • Tabs
  • Tiles
  • Toasts
  • Tooltips
  • Typeahead Select
  • Colors
  • Cursors
  • Display
  • Divider
  • Loading
  • Position
  • Flex
  • Shapes
  • Text
  • Shadow

Links#

Links include styles for giving elements an hyper-link treatment.

default link
primary link
secondary link
disabled link

Add the link class to <span> or <button> elements for a default link. There are classes link-primary, link-secondary and disabled for predefined primary and secondary links.

Anchors#

By default <a> tags are .link.link-primary.

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Necessitatibus, cumque! Quaerat quis at odit nesciunt, ab laborum voluptatem, corporis, possimus doloremque fugit pariatur quisquam animi repellat soluta nemo. Deserunt, non.

Button Links#

Adding the link class to a <button> gives it the same treatment as the text around it.

Would you like the or the ?
<div class="toast">
  Would you like the
  <button class="link link-primary">Red Pill</button> or the
  <button class="link link-secondary">Blue Pill</button>?
</div>
RideStyler
<div class="navbar">
  <div class="navbar-brand">RideStyler</div>
  <section class="navbar-section">
    <button class="link">User Name</button>
  </section>
</div>