~ ❯❯❯ brew --config
HOMEBREW_VERSION: 0.9.5
ORIGIN: https://github.com/Homebrew/homebrew
HEAD: 335407e58f4d1195f383b4fcee9f77cd180944a4
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
CPU: quad-core 64-bit ivybridge
OS X: 10.9.3-x86_64
Xcode: 5.1.1
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
| @-moz-document domain("duckduckgo.com") { | |
| /*** Centering *************************************************************/ | |
| div.cw:nth-child(4), | |
| #header, | |
| div.zcm:nth-child(4) { | |
| margin-left: auto !important; | |
| margin-right: auto !important; | |
| } | |
| #header, |
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
| // Example 1 | |
| mediator.name = 'Doug'; | |
| mediator.subscribe('nameChange', function(arg){ | |
| console.log(this.name); | |
| this.name = arg; | |
| console.log(this.name); | |
| }); | |
| mediator.publish('nameChange', 'Jorn'); |
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
| @mixin center($width, $height) { | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| height: $height; | |
| width: $width; | |
| margin-left: - $width / 2; | |
| margin-top: - $height / 2; | |
| } |
NewerOlder