Skip to main content
Decoration utilities

Borders

In Codebase, borders and other detail elements (table cells, form inputs, etc.) are a transparent black color by default, so that they appear as a pale gray on a white background, and they also work well on backgrounds of other colors.

Border thickness

b-0 0px – for removing borders (has the !important flag)
b-dashed – 1px default
b-thin – 1px default
b-thick – 4px default
b-heavy – 8px default

Border on one edge

Examples using -heavy:

bt-heavy
br-heavy
bb-heavy
bl-heavy

Of course, you can have borders on more than one edge by using more than one of these utilities on an element.

Responsive borders

Five tiers of border control, because besides the examples menuined above, each border utility has xs:, sm:, md:, and lg: variants. That makes 150 border utilities!

In addition, there are all the border b-{color}-{shade} utilities – see colors.

Responsive borders example

Example of responsive borders and spacing (i.e. margins and paddings) in a responsive grid:

Item one
Item two
Item three
Item four
Item five
Item six
Item seven
Item eight
<div class="my-6 grid xs:equal-2-cols lg:equal-4-cols b-thick xs:b-0 px-2 xs:px-0 xs:t-center">
<div class="bb-thin xs:br-thin lg:bb-thick py-2 md:p-4 lg:py-6">Item one</div>
<div class="bb-thin lg:br-thin lg:bb-thick py-2 md:p-4 lg:py-6">Item two</div>
<div class="bb-thin xs:bb-thick xs:br-thin py-2 md:p-4 lg:py-6">Item three</div>
<div class="bb-thick py-2 md:p-4 lg:py-6">Item four</div>
<div class="bb-thin xs:br-thin lg:bb-0 py-2 md:p-4 lg:py-6">Item five</div>
<div class="bb-thin lg:br-thin lg:bb-0 py-2 md:p-4 lg:py-6">Item six</div>
<div class="bb-thin xs:br-thin xs:bb-0 py-2 md:p-4 lg:py-6">Item seven</div>
<div class="py-2 md:p-4 lg:py-6">Item eight</div>
</div>

Border colors

By default, borders are colored by the variable $color-detail, – this variable is used for .table borders, horizontal rules <hr>, and form element inputs, textareas, and buttons (default and btn).

In Codebase, $color-detail has its color set using an alpha-channel transparency – rgba(0, 0, 0, 0.15) (default).

You can override these default semi-transparent gray borders using any of the (opaque) b- color utility classes for borders.

Note: you can only apply one border color utility class per element. It will color all of whichever border side borders are being displayed on your element.

Borders and background colors/images

The semi-transparent default border color enables backgrounds and background-colors of wrapper elements to show through, thereby changing the apparent tint of the border line, if the background color is md-range.

In the following examples, the top row uses the default borders, whereas the the bottom row uses the nearest similer (but opaque) gray utility color for borders: b-gray-200. (See colors.)

Note: The last item on the top row demonstrates a situation where you can’t see the default border, because it is semi-transparent black over a black background on the wrapper element.

<div class="p-2 bg-primary">
<div class="b-thick p-3"></div>
</div>

<div class="p-2 bg-primary">
<div class="b-thick b-gray-200 p-3"></div>
</div>

What if you want the background image or background color of the bordered element itself to show thorugh the semi-transpatent border? Ordinarily, this doesn’t work because the background is only applied applied to the content of the emement (the border goes around the outside of the content).

However, in CSS3 you can change the background-origin of the background image or background color. Codebase enables you to do this using the special background utility class bg-under-border – this sets background-origin: border-box.

Note: The last item on the top row demonstrates a situation where you can’t see the default border, because it is semi-transparent black over a black background on the element itself.

<div class="p-2">
<div class="b-thick bg-primary bg-under-border p-3"></div>
</div>

<div class="p-2">
<div class="b-thick b-gray-200 bg-primary bg-under-border p-3"></div>
</div>