- foo
- foo-foo
- foo-bar
- foo-baz
- bar
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
| var replaceLinkWithCode = function (codeURL, codeRef) { | |
| var request = new XMLHttpRequest(); | |
| request.open('get', codeURL, true); | |
| request.addEventListener('load', function () { | |
| var parent = codeRef.parentNode; | |
| var pre = document.createElement('pre'); | |
| parent.insertBefore(pre, codeRef); | |
| var code = document.createElement('code'); |
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
| // Create swatch | |
| $color-base: #33ff33; | |
| $color-accent: #3333ff; | |
| .header { | |
| background-color: $color-base; | |
| } | |
| .header .active { | |
| color: $color-accent; |
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
| Error detected while processing **************************: | |
| line 1: | |
| E128: Function name must start with a capital or "s:": test:func() | |
| This is a test. | |
| line 3: |
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
| .test { | |
| color: green; } | |
| .test-global { | |
| 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
| .foo { | |
| color: red; } | |
| .foo__bar { | |
| color: green; } | |
| .foo--baz { | |
| 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
| " !optional | |
| syn match sassOptional "!optional\>" contained | |
| hi def link sassOptional cssImportant | |
| " !global | |
| syn match sassGlobal "!global\>" contained | |
| hi def link sassGlobal cssImportant | |
| " Functions | |
| syn match sassFunction "\<\%(invert\)\>(\@=" contained |
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
| /* Feedly */ | |
| #feedlyCenter * { | |
| font-family: "Segoe UI", sans-serif !important; | |
| } | |
| #feedlyCenter code, | |
| #feedlyCenter pre { | |
| font-family: "Consolas", monospace !important; | |
| } |
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
| 'use strcit'; | |
| var path = require('path'); | |
| module.exports = function (grunt) { | |
| var config = { | |
| pkg: grunt.file.readJSON('package.json') | |
| }; | |
| grunt.file.expand('.grunt/config/*.json').forEach(function (file) { |