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
.block{ | |
position:fixed; | |
display:inline-block; | |
width:3em; | |
height:3em; | |
padding:1em; | |
margin:0; | |
background:pink; | |
border:0.1em solid black; | |
text-align:center; |
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
/* ========================================================================== | |
Basic Global Styles Header | |
========================================================================== */ | |
* { | |
box-sizing:border-box; | |
} |
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
/* | |
Grep.js | |
Author : Nic da Costa ( @nic_daCosta ) | |
Created : 2012/11/14 | |
Version : 0.2 | |
(c) Nic da Costa | |
License : MIT, GPL licenses | |
Overview: | |
Basic function that searches / filters any object or function and returns matched properties. |
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
/* | |
* DevToolsAPI.js | |
* Author : Nic da Costa ( @nic_daCosta ) | |
* Created : 2012/11/27 | |
* Version : 0.1 | |
* License : MIT, GPL licenses. | |
* | |
* Overview: | |
* script to possibly be included in DevTools.js ( Chrome Dev Tools ) to give a | |
* basic "interface" for developers to register scripts / functions for repeated use. |