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
| # .bash_d3_aliases | |
| # You may uncomment the following lines if you want `ls' to be colorized: | |
| # some more ls aliases | |
| if [ -x /usr/bin/dircolors ]; then | |
| export LS_OPTIONS='--color=auto' | |
| eval "`dircolors`" | |
| alias ls='ls $LS_OPTIONS' | |
| alias ll='ls $LS_OPTIONS -laF' | |
| alias la='ls $LS_OPTIONS -lAF' |
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
| //- Multiple blocks in jade mixins? #1693 | |
| //- https://github.com/pugjs/pug/issues/1693 | |
| //- [Issue on github] | |
| //- https://github.com/pugjs/pug/issues/1693 | |
| h2 Issue | |
| p | |
| a(href='https://github.com/pugjs/pug/issues/1693' , target="_blank") Multiple blocks in jade mixins? | |
| hr |
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
| ## FILL ## | |
| fill Sets fill color of the shape. | |
| fill-opacity Sets fill opacity of the shape. | |
| fill-rule Sets fill rule of the shape. | |
| ** example ** | |
| fill: #ccc; | |
| fill: rgba(0,0,0,.5); | |
| fill: red; |