Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

IMG_43445

JPG Image

1.2mb

VID_6543

MP4 Video

24.8mb

Tax_Form

Word Document

5.5mb

Getting_Started

PDF Document

12.7mb

Introduction

PDF Document

7.7mb

IMG_43420

JPG Image

2.2mb

IMG_43447

JPG Image

3.2mb

VID_6545

AVI Video

14.8mb

Secret_Document

Word Document

4.5mb

+ Add Event

Buttons

Button styles for actions in forms, dialogs, and more with a handful of variations, sizes, states, and more.

Twelve predefined button styles, each serving its own semantic purpose.

<button class="btn btn-primary">Primary</button>
<button class="btn btn-primary active">Active</button>
<button class="btn btn-primary disabled">Disabled</button>
Class Values
class="btn btn-[value]" primary | success | warning | danger | info | teal | indigo | purple | pink | light | dark

Twelve predefined outline button styles, each serving its own semantic purpose.

Class Values
class="btn btn-outline-[value]" primary | success | warning | danger | info | teal | indigo | purple | pink | dark

A very rounded corner for both basic and outline buttons.

Class Values
class="btn btn-oblong btn-[value]" primary | success | warning | danger | info | teal | indigo | purple | pink | light | dark
class="btn btn-oblong btn-outline-[value]"

A button variant for basic and outline buttons with additional icons.

<button class="btn btn-primary"><i class="fa fa-send mg-r-10"></i> Send Message</button>
<a href="" class="btn btn-primary btn-with-icon">
  <div class="ht-40 justify-content-between">
    <span class="pd-x-15">Send Message</span>
    <span class="icon wd-40"><i class="fa fa-send"></i></span>
  </div>
</a>
<!-- reverse -->
<a href="" class="btn btn-primary btn-with-icon">
  <div class="ht-40">
    <span class="icon wd-40"><i class="fa fa-send"></i></span>
    <span class="pd-x-15">Send Message</span>
  </div>
</a>
Class Value / Description
class="btn btn-[value] btn-with-icon" primary | success | warning | danger | info | teal | indigo | purple | pink | light | dark
class="ht-40" Set an element of having a height of 40px.
class="wd-40" Set an element of having a width of 40px.
class="pd-x-15" Set a padding of 15px for both left and right.
NOTE: To know more about helper classes for height, check out the Utilities menu of this template.

A button variant for using only icons.



<a href="#" class="btn btn-primary btn-icon">
  <div><i class="fa fa-send"></i></div>
</a>
Class Description
btn-icon A class for button that only an icon is allowed, that means no text.

Increasing the width of an outline button by adding only a single class coming from border utilities. Only applicable to outline buttons only.

<button class="btn btn-outline-primary bd-2">Explore</button>
Class Size
bd-[size] 1 | 2 | 3 | 4 | 5

Enhancing the button by adding some utility classes available and allowed for buttons.

<button class="btn btn-primary pd-x-30 pd-y-15 tx-uppercase tx-bold tx-spacing-6 tx-12">Take a Tour</button>

<button class="btn btn-outline-primary btn-oblong bd-2 pd-x-30 pd-y-15 tx-uppercase tx-bold tx-spacing-6 tx-12">
  Take a Tour
</button>
Class Size
pd-x-30 Set the padding for both left and right to 30px. Check more padding in Padding utilities.
pd-y-15 Set the padding for both top and bottom to 15px. Check more padding in Padding utilities.
tx-uppercase Transform the text into uppercase. Check more case in Typography utilities.
tx-bold Set the text font weight into bold. Check more weight in Typography utilities.
tx-spacing-6 Set the letter spacing of a text. Check more spacing in Typography utilities.

Group a series of buttons together on a single line with the button group.

<div class="btn-group" role="group" aria-label="Basic example">
  <button type="button" class="btn btn-secondary pd-x-25 active">General Settings</button>
  <button type="button" class="btn btn-secondary pd-x-25">Privacy Settings</button>
  <button type="button" class="btn btn-secondary pd-x-25">Account Settings</button>
</div>