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
Generate a 400x200 pixel image | |
<img src="http://placehold.it/400x200"/> | |
Add some text | |
<img src="http://placehold.it/400x200&text=Image+of+orangutan+here."/> | |
Add color | |
<img src="http://placehold.it/400x200/FF3300/FFFFFF&text=Strawberry+fields+forever."/> | |
Generate a .gif |
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
<?php $taxonomy = 'categoria-galeria'; $tax_terms = get_terms($taxonomy); ?> | |
<?php foreach ($tax_terms as $tax_term) { ?> | |
<!-- echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>'; --> | |
<li><a data-filter=".categoria-galeria-<?php echo $tax_term->slug ?>" href="#"><?php echo $tax_term->name ?></a></li> | |
<?php } ?> |
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
.gallery__filter--list--item-link{ color: #0091AC !important;font-size: 15px; position: relative;} | |
.gallery__filter--list--item-link:hover { text-decoration: underline; cursor: pointer} | |
.gallery__filter--list--item-link:before { | |
position: absolute; | |
/*background: red;*/ | |
width: 16px; | |
left: -20px; | |
content: "\f096"; | |
height: 16px; | |
top: 2px; |
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
.wpcf7-response-output.wpcf7-mail-sent-ok { | |
display: inline-block; | |
padding: 20px 10px; | |
text-align: center; | |
width: 100%; | |
background-color: #2E5E94; | |
color: #fff; | |
position: fixed; | |
top: -70px; |
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
upload_max_filesize = 250MB | |
post_max_size = 500MB | |
memory_limit = 512 | |
max_execution_time = 3600 |
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
$('.action').click(function(e) { | |
e.preventDefault(); | |
$('.target').slideToggle(300); | |
}); |
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
//ContentMain.xml | |
<EditText | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:id="@+id/nameText" /> | |
<Button | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="submit" |
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
var coursejson = [ | |
{ | |
"id":"1", | |
"courseName":"Curso Alvenaria Estrutural para Construtoras", | |
"courseUrl":"course-ead.html", | |
"courseThumbnail": "assets/images/courses/card-thumb-1.jpg", | |
"courseModality" : "Ensino à Distância", | |
"courseModalityClass" : "ensino-a-distancia", | |
"courseAtuationAreaClass" : "engenharia-estrutural", | |
"courseTypeClass" : "curso-teorico", |
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
$(function() { | |
$(".links").click(function(e) { | |
$("section").removeClass("animated bounceInDown"); | |
$("section").addClass("animated bounceOutUp"); | |
$('body').prepend("<div class='carregando'><h2 class='thin fade animated'><span class='icon-spin2 animate-spin thin'></span> Carregando... </h2> </div>"); | |
}); | |
}); |