Pure CSS3 switch with inner labels.
A Pen by Rodrigo Muniz on CodePen.
<?php | |
function get_content_link( $content = false, $echo = false ) { | |
if ( $content === false ) | |
$content = get_the_content(); | |
$content = preg_match_all( '/hrefs*=s*["']([^"']+)/', $content, $links ); | |
$content = $links[1][0]; | |
if ( empty($content) ) { | |
$content = false; |
Pure CSS3 switch with inner labels.
A Pen by Rodrigo Muniz on CodePen.
.arrow-down { | |
display: block; | |
margin: 25px auto 0; | |
width: 0; | |
height: 0; | |
position: relative; | |
border-left: 10px solid transparent; | |
border-right: 10px solid transparent; | |
border-top: 15px solid #fff; | |
-webkit-animation: arrowDown 2s infinite; |
Sugestões, Idéias, Comentários, Chamados de Suporte são muito bem vindos na área de Sugestões & Discussões.
<div class="uim-no-items well text-muted text-center"> | |
<i class="fa fa-frown-o fa-5x"></i> | |
<p class="lead">No <strong>coupon</strong> found</p> | |
</div> |
<div class="uim-no-items well text-muted text-center"> | |
<i class="fa fa-frown-o fa-5x"></i> | |
<p class="lead">There's no <strong>coupon</strong> created yet</p> | |
<a href="javascript:void(0)" class="btn btn-default btn-lg">Create new coupon</a> | |
</div> |
<div class="uim-search-filter"> | |
<form class="search"> | |
<input type="text" placeholder="Search by Name, Description or Sales Channel" class="form-control input-lg" autofocus=""> | |
<div class="uim-btn-filter dropdown"> | |
<button type="button" class="btn btn-default btn-lg dropdown-toggle" data-toggle="dropdown"> | |
<span class="uim-filter-count badge">0</span> | |
<i class="fa fa-filter"></i> | |
<span class="caret"></span> | |
</button> |
<a href="#card" class="uim-card"> | |
<div class="uim-card-heading"> | |
uim-card-heading | |
</div> | |
<div class="uim-card-body"> | |
uim-card-body | |
</div> | |
<div class="uim-card-footer"> |