I hereby claim:
- I am dotnetCarpenter on github.
- I am dotnetcarpenter (https://keybase.io/dotnetcarpenter) on keybase.
- I have a public key whose fingerprint is 4DBC 96AE 79EE EACF 4052 AF89 AB34 16B5 6900 250B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Minimum required to set an underline that can be animated | |
| */ | |
| .f-jons-demo1 h2 { | |
| display: inline; /* an inline element only takes up the size of its content (the content is "Hello World") */ | |
| color: darkred;/* not needed - set the color of the text */ | |
| background: linear-gradient(grey, grey) bottom / 100% .1em no-repeat; | |
| } | |
| /* The above can also be written like this: */ |
| /** | |
| * Text-underline-animation | |
| */ | |
| a { | |
| font-size: 500%; | |
| text-decoration: none; | |
| background: linear-gradient(currentColor, currentColor) bottom / 0 .1em no-repeat; | |
| transition: 1s background-size; | |
| } |
| TAP version 13 | |
| # Subtest: test/304.js | |
| # Subtest: 304_not_modified | |
| ok 1 - first request should be a 200 | |
| ok 2 - second request should be a 304 | |
| ok 3 - should return a strong etag | |
| 1..3 | |
| ok 1 - 304_not_modified # time=212.235ms | |
| # Subtest: 304_not_modified_weak |
| TAP version 13 | |
| # Subtest: test/304.js | |
| # Subtest: 304_not_modified | |
| ok 1 - first request should be a 200 | |
| ok 2 - second request should be a 304 | |
| ok 3 - should return a strong etag | |
| 1..3 | |
| ok 1 - 304_not_modified # time=224.058ms | |
| # Subtest: 304_not_modified_weak |
Using SVG filters to turn a grayscale image into a multi-toned image with pure whites and blacks but colored mid-tones. Not sure if there is a name for this in traditional graphic printing.
If you un-comment the section of CSS, the color becomes a hover effect.
See the Fun with Color Filters collection for more.
Forked from Amelia Bellamy-Royds's Pen CSS Filters Gray -> Color.
| /** | |
| * indecks logo animation | |
| */ | |
| background: #fff; |
| /** | |
| * indecks logo animation | |
| */ | |
| background: #fff; |
| /** | |
| * indecks logo animation | |
| */ | |
| background: #fff; |
| module.exports = function(grunt) { | |
| // grunt.registerTask('custom', 'Add a custom task to grunt', function() { | |
| // ; | |
| // } | |
| // Project configuration. | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| cssmin: { | |
| compress: { | |
| files: { |