AdminLTE/docs/components/ribbons.md
2020-06-05 17:02:09 +03:00

4.6 KiB

layout title
page Ribbons Component

The ribbons component is a easy way to display informations above any content. The .ribbon-warpper needs to be inside a element with position:relative;. In this docs page we place the ribbon always inside <div class="position-relative p-3 bg-gray" style="height: 180px"></div> for demo purpose but it can placed inside cards, table rows & many more.

The ribbon comes in three sizes to display more text or use larger font sizes, default (only .ribbon-wrapper), large (.ribbon-wrapper with .ribbon-lg), extra large (.ribbon-wrapper with .ribbon-xl).

Example Markup

{: .text-bold .text-dark .mt-5}

Ribbon
Ribbon Default
.ribbon-wrapper.ribbon-lg .ribbon
<div class="ribbon-wrapper">
  <div class="ribbon bg-primary">
    Ribbon
  </div>
</div>

{: .max-height-300}

Ribbon Size Variations

{: .text-bold .text-dark .mt-5}

Ribbon
Ribbon Default
.ribbon-wrapper.ribbon-lg .ribbon
Ribbon Large
Ribbon Large
.ribbon-wrapper.ribbon-lg .ribbon
Ribbon Extra Large
Ribbon Extra Large
.ribbon-wrapper.ribbon-xl .ribbon
```html
Ribbon
```
```html
Ribbon Large
```
```html
Ribbon Extra Large
```
Text Size Variations

{: .text-bold .text-dark .mt-5}

Ribbon
Ribbon Large
with Large Text
.ribbon-wrapper.ribbon-lg .ribbon.text-lg
Ribbon
Ribbon Extra Large
with Large Text
.ribbon-wrapper.ribbon-xl .ribbon.text-lg
Ribbon
Ribbon Extra Large
with Extra Large Text
.ribbon-wrapper.ribbon-xl .ribbon.text-xl
```html
Ribbon
```
```html
Ribbon
```
```html
Ribbon
```
Image Example Code

{: .text-bold .text-dark .mt-5}

<div class="position-relative">
  <img src="../../dist/img/photo1.png" alt="Photo 1" class="img-fluid">
  <div class="ribbon-wrapper ribbon-lg">
    <div class="ribbon bg-success text-lg">
      Ribbon
    </div>
  </div>
</div>