This file contains hidden or 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
#!/bin/bash | |
# Função para exibir mensagens de erro e sair | |
die() { | |
echo "Erro: $1" | |
exit 1 | |
} | |
# Função para exibir a mensagem de ajuda | |
display_help() { |
This file contains hidden or 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
<canvas id='canvas'></canvas> |
This file contains hidden or 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="title">Neon Lights</div> | |
<div class="content"> | |
<span id="switch">Turn em on</span> | |
<h1 id="lights">rlemon's diner<br />$4.95 a plate!</h1> | |
</div> |
This file contains hidden or 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
.bola { | |
width:50px; | |
height:50px; | |
background-color:red; | |
border-radius:50%; | |
trasnform-style: preserve-3d; | |
perspective:100px; | |
} | |
@keyframes anima { | |
0% {transform: translateX(0%) scale3d(.5,.5,.5);background-color:blue;} |
This file contains hidden or 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
This file contains hidden or 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
@import url(http://weloveiconfonts.com/api/?family=entypo); | |
/* zocial */ | |
[class*="zocial-"]:before { | |
font-family: 'zocial', sans-serif; | |
} | |
.entypo-note { | |
font-size:80px; | |
margin-left:-20px; |
This file contains hidden or 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
@import url(http://weloveiconfonts.com/api/?family=entypo); | |
/* zocial */ | |
[class*="zocial-"]:before { | |
font-family: 'zocial', sans-serif; | |
} | |
.entypo-note { | |
font-size:80px; | |
display:block; |
This file contains hidden or 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
body {} | |
div{ | |
position:absolute; | |
left:50%; | |
top:50%; | |
margin-left:-100px; | |
margin-top:-100px; | |
width:200px; | |
height:200px; |
This file contains hidden or 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
:target { | |
-webkit-animation: target-fade 3s 1; | |
-moz-animation: target-fade 3s 1; | |
} | |
@-webkit-keyframes target-fade { | |
0% { background-color: rgba(0,0,0,.1); } | |
100% { background-color: rgba(0,0,0,0); } | |
} | |
@-moz-keyframes target-fade { |
This file contains hidden or 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
:target { | |
-webkit-animation: target-fade 3s 1; | |
-moz-animation: target-fade 3s 1; | |
} | |
@-webkit-keyframes target-fade { | |
0% { background-color: rgba(0,0,0,.1); } | |
100% { background-color: rgba(0,0,0,0); } | |
} | |
@-moz-keyframes target-fade { |
NewerOlder