A Pen by Willian Costa Souza on CodePen.
A Pen by Willian Costa Souza on CodePen.
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
| A Pen by Willian Costa Souza | |
| ---------------------------- | |
| A [Pen](http://codepen.io/willianis4w/pen/ibkeo) by [Willian Costa Souza](http://codepen.io/willianis4w) on [CodePen](http://codepen.io/). |
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="img__wrapper"> | |
| <img src="" alt="" /> | |
| </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
| <snippet> | |
| <content><![CDATA[ | |
Example by Willian Costa Souza on CodePen.
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
| .tooltip { | |
| font-weight: bold; | |
| position: relative; | |
| } | |
| .tooltip:hover:after { | |
| background: #fff; | |
| box-shadow: 0 0 5px #DFE3E6; | |
| border: 1px solid #DFE3E6; | |
| border-radius: 5px; |
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
| /* Cria a estrutura da fila. */ | |
| struct fifo_node | |
| { | |
| /* Cria um ponteiro (*next) apontando para a própria estrutura */ | |
| struct fifo_node *next; | |
| /* Valor qualquer, apenas de exemplo */ | |
| value_type value; | |
| }; | |
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> | |
| <img /> | |
| </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
| <snippet> | |
| <content><![CDATA[ | |
| <?php for( \$i= 1; \$i <= 3; \$i++ ): ?> | |
| ${1} | |
| <?php endfor ?> | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>for</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> | |
| <!-- <scope>source.python</scope> --> |
NewerOlder