TODO: Describe what the project is, what it does
- Use bullet points to lay out languages and modules like so:
- PHP (>=5.5.x)
- Uses the Amazon AWS PHP library (link to library)
- node.js (0.10.36 or higher)
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| $(window).load(function(){ | |
| $().hatchShow(); | |
| }); | |
| jQuery.fn.hatchShow = function(){ | |
| $('.hsjs').css('display','inner-block').css('white-space','pre').each(function(){ | |
| var t = $(this); | |
| t.wrap("<span class='hatchshow_temp' style='display:block'>"); | |
| var pw = t.parent().width(); |
| @mixin linear-gradient($angle, $color-stops...) { | |
| $_angle-with-vendor-prefix: ""; | |
| $_angle: ""; | |
| @if $angle == "to top" or $angle == "bottom" { | |
| $_angle-with-vendor-prefix: bottom; | |
| $_angle: to top; | |
| } @else if $angle == "to right" or $angle == "left" { | |
| $_angle-with-vendor-prefix: left; | |
| $_angle: to right; | |
| } @else if $angle == "to bottom" or $angle == "top" { |