<div class="theme-colors default-transition" style="opacity: 1;"> <div class="p-4"> <p class="text-muted mb-2">Light Theme</p> <div class="d-flex flex-row justify-content-between mb-4"> <a href="#" data-theme="dore.light.blue.min.css" class="theme-color theme-color-blue active"></a> <a href="#" data-theme="dore.light.purple.min.css" class="theme-color theme-color-purple"></a> <a href="#" data-theme="dore.light.green.min.css" class="theme-color theme-color-green"></a> <a href="#" data-theme="dore.light.orange.min.css" class="theme-color theme-color-orange"></a> <a href="#" data-theme="dore.light.red.min.css" class="theme-color theme-color-red"></a> </div> <p class="text-muted mb-2">Dark Theme</p> <div class="d-flex flex-row justify-content-between"> <a href="#" data-theme="dore.dark.blue.min.css" class="theme-color theme-color-blue"></a> <a href="#" data-theme="dore.dark.purple.min.css" class="theme-color theme-color-purple"></a> <a href="#" data-theme="dore.dark.green.min.css" class="theme-color theme-color-green"></a> <a href="#" data-theme="dore.dark.orange.min.css" class="theme-color theme-color-orange"></a> <a href="#" data-theme="dore.dark.red.min.css" class="theme-color theme-color-red"></a> </div> </div> <a href="#" class="theme-button"> <i class="simple-icon-magic-wand"></i> </a> </div>
Wednesday, February 6, 2019
Tab
<div class="card">
<div class="card-header pl-0 pr-0">
<ul class="nav nav-tabs card-header-tabs ml-0 mr-0" role="tablist">
<li class="nav-item w-50 text-center">
<a class="nav-link active show" id="first-tab_" data-toggle="tab" href="#firstFull" role="tab" aria-controls="first" aria-selected="true">Tab 1</a>
</li>
<li class="nav-item w-50 text-center">
<a class="nav-link" id="second-tab_" data-toggle="tab" href="#secondFull" role="tab" aria-controls="second" aria-selected="false">Tab 2</a>
</li>
</ul>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane fade active show" id="firstFull" role="tabpanel" aria-labelledby="first-tab_">
<h6 class="mb-4">Homemade Cheesecake with Fresh Berries and Mint</h6>
<button type="button" class="btn btn-sm btn-outline-primary">Edit</button>
</div>
<div class="tab-pane fade" id="secondFull" role="tabpanel" aria-labelledby="second-tab_">
<h6 class="mb-4">Wedding Cake with Flowers Macarons and Blueberries</h6>
<button type="button" class="btn btn-sm btn-outline-primary">Edit</button>
</div>
</div>
</div>
</div>
Subscribe to:
Comments (Atom)

