This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*============================================= | |
KALI | |
@by cav_dan | |
$() | |
Kali: not jquery, but enough for me! | |
@args | |
string selector -> a css like selector. | |
returns single object OR array of objects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
// Animation CLASS | |
// @author cav_dan<[email protected]> | |
// @desc | |
// Create a frame-by-frame animation that may use jQuery | |
// | |
// @args | |
// selector = $('#someid') || document.querySelector('#someid'), | |
// | |
// optionsObj = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.left {text-align: left;} | |
.center {text-align: center;} | |
.right {text-align: right;} | |
.top {vertical-align: top;} | |
.bottom {vertical-align: bottom;} | |
.block-center {margin: 0 auto;} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: "DeckRegIt"; | |
font-style: normal; | |
font-weight: 300; | |
src: local("DeckRegIt"), url('fonts/DeckRegIt.otf') format("opentype"); | |
src: local("DeckRegIt"), url('fonts/DeckRegIt.ttf'); | |
} | |
@font-face { | |
font-family: "DeckBlackIt"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin print { | |
@media only print { | |
@content; | |
} | |
} | |
@mixin no-print { | |
@media only print { | |
display: none !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin categoria-cores { | |
@each $categoria in $categorias { | |
.cat-#{nth($category, 1)} { | |
background-color: nth($category, 2); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[class^="icn-"] { | |
display: inline-block; | |
height:18px; | |
width:18px; | |
float: left; | |
margin-right: 5px; | |
background: url("/images/ico/default.icon.gif") center center no-repeat; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[class*="icon-glyph-"] { | |
display: inline-block; | |
height: 30px; | |
width: 30px; | |
background-image: url("../img/glyphicons.png"); | |
} | |
.icon-white { | |
background-image: url("../img/glyphicons-w.png"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="span4"> | |
<div class="control-group"> | |
<label for="coment" class="control-label">Comentário simples <br></label> | |
<div class="controls"> | |
<textarea class="comentarioGrupo validarGrupos" name="coment" id="coment" cols="50" rows="5" limite="200"></textarea> | |
<span class="help-block"><b>200</b> caracteres restantes</span> | |
<label for="comentarioGrupo" class="label label-important"></label> | |
</div> | |
</div> | |
</div> |
NewerOlder