Skip to content

Instantly share code, notes, and snippets.

View rodrigomuniz's full-sized avatar
🏳️‍🌈

Rodrigo Muniz rodrigomuniz

🏳️‍🌈
View GitHub Profile
@rodrigomuniz
rodrigomuniz / card.html
Last active August 29, 2015 14:06
Card
<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">
@rodrigomuniz
rodrigomuniz / search-filters.html
Last active August 29, 2015 14:06
Search and Filters
<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>&nbsp;
<span class="caret"></span>
</button>
@rodrigomuniz
rodrigomuniz / no-items-yet.html
Created September 25, 2014 21:38
No items yet
<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>
@rodrigomuniz
rodrigomuniz / no-items-found.html
Last active August 29, 2015 14:06
No items found
<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>

Temos 3 dicas antes de você perguntar

1. É uma Dúvida ou Sugestão?

Sugestões, Idéias, Comentários, Chamados de Suporte são muito bem vindos na área de Sugestões & Discussões.

2. Como fazer uma boa pergunta?

  • Ao redigir uma nova pergunta, foque somente em uma questão por vez;
  • Inclua detalhes como o que tentou, o que aconteceu quando tentou, o que fez para resolver o problema;
  • Seja sucinto! Quanto mais objetivo quando for descrever o seu problema, mais rápido terá uma resposta.
@rodrigomuniz
rodrigomuniz / animated-arrow-down.css
Last active August 29, 2015 14:01
Jumpy white arrow pointing down
.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;
@rodrigomuniz
rodrigomuniz / Pure-CSS3-on-off-switch.markdown
Created January 13, 2014 21:42
A Pen by Rodrigo Muniz.
@rodrigomuniz
rodrigomuniz / gist:4670975
Last active December 11, 2015 22:39
Teste
<?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;