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
a:link { | |
} | |
a:visited { | |
} | |
a:focus { |
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
.flex-container { | |
/* Display */ | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
/* Direction */ |
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
* + * |
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
<input type="text" pattern="[0-9]*" inputmode="numeric" autocomplete="cc-number"> |
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
.blend-modes { | |
background-blend-mode: screen; | |
background-blend-mode: overlay; | |
background-blend-mode: darken; | |
background-blend-mode: lighten; | |
background-blend-mode: color-dodge; | |
background-blend-mode: color-burn; | |
background-blend-mode: hard-light; | |
background-blend-mode: soft-light; | |
background-blend-mode: difference; |
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
/* whitespace */ | |
.foo { | |
content: "\0020"; | |
} | |
/* non-breaking space */ | |
.bar { | |
content: "\00a0"; | |
} |
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
Load the FTP server | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist | |
Unload the FTP server | |
sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist | |
http://igerry.com/desktop/apple-os/enabling-ftp-server-os-x-mavericks.html |
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
/* http://24ways.org/2013/coding-towards-accessibility/ */ | |
.my-cool-link:hover, | |
.my-cool-link:focus, | |
.my-cool-link:active { | |
background-color: MistyRose ; | |
} |
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
input[type=search] { | |
-webkit-appearance: none; | |
} | |
input[type="search"]::-webkit-search-decoration, | |
input[type="search"]::-webkit-search-cancel-button | |
{ | |
display: none; | |
} |
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
input[type="password"] | |
{ | |
font: large Verdana,sans-serif; | |
letter-spacing: 1px; | |
} |