Codebase

Documentation

Responsive Layouts
Utilities
Components
Simple Components

Responsive Panels

Codebase has a special .panel-responsive class makes a panel “pop out” of its conaining column.

The .panel-responsive class adds negative 2vw x-axis margins and commensurate positive 2vw padding (to all sides), and it ises calc() to enable the element width to expand to the required width.

Since the side margins and paddings cancel each other out, there’s not much to see until you add some decoration, such as border(s) or a background color. So, here is a demo with a dashed border:

This is some text in a responsive panel.
<div class="panel-responsive">
This is some text in a responsive panel.
</div>

The decoration, of course, is up to you. Design whatever you want.

You can see several panels that look like this around the Codebase docs:

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum interdum metus sed rhoncus lobortis. Morbi pretium bibendum augue at consequat. Sed tempor lacus eget mi tristique venenatis.
<div class="panel-responsive bl-heavy b-color-primary bg-color-primary-alt">
Lorem ipsum dolor sit amet...
</div>

Try something like this for making an important quote to stand out:

“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum interdum metus sed rhoncus lobortis. Morbi pretium bibendum augue at consequat. Sed tempor lacus eget mi tristique venenatis.”
<div class="panel-responsive bt-heavy bb-heavy b-color-success t-lg t-center">
“Lorem ipsum dolor sit amet...”
</div>

Another example:

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum interdum metus sed rhoncus lobortis. Morbi pretium bibendum augue at consequat. Sed tempor lacus eget mi tristique venenatis.
<div class="panel-responsive rounded-lg bg-color-danger t-color-ui-text">
Lorem ipsum dolor sit amet...
</div>