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
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: border-box; | |
| } | |
| .card { | |
| margin: 10px; | |
| text-align: center; | |
| padding: 10px; |
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
| #outer { | |
| width: 500px; | |
| height: 500px; | |
| background-color: green; | |
| } | |
| #inner { | |
| width: 150px; | |
| height: 150px; | |
| background-color: red; |
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 suits = { | |
| SPADES: 'spades' | |
| ,HEARTS: 'hearts' | |
| ,CLUBS: 'clubs' | |
| ,DIAMONDS: 'diamonds' | |
| }; | |
| var ranks = { | |
| ACE: 1 | |
| ,TWO: 2 |
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
| #!/bin/bash | |
| # this script is based on code from the following script: | |
| # https://github.com/tmacam/private-git-on-dreamhost/blob/master/newgit.sh | |
| set -e | |
| # intial values | |
| GIT_REPOS_ROOT="${HOME}/git/repos" | |
| DESCRIPTION='A Git Repository' |