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
| /* | |
| [WEB] Choices | |
| @original: Choices - http://dribbble.com/shots/730954-Choices | |
| */ | |
| * { | |
| padding: 0; | |
| margin: 0; | |
| -webkit-font-smoothing: antialiased; | |
| } |
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
| html, body { height: 100%; padding: 0; margin: 0; } | |
| body { | |
| background: radial-gradient(#346ca8, #295d9c); | |
| } | |
| .icon { | |
| font-family: "Pictos"; | |
| position: absolute; | |
| top: 50%; left: 50%; | |
| transform: translateX(-50%) translateY(-50%); |
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
| body { | |
| background: #eee; | |
| } | |
| img { | |
| border-radius: 5px; | |
| } | |
| .img { | |
| display: inline-block; |
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
| .box { | |
| width: 30px; | |
| height: 30px; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .box:after { | |
| content: ''; | |
| position: absolute; |
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
| /* Actual Styles */ | |
| .player { | |
| height: 70px; | |
| width: 300px; | |
| border-radius:5px; | |
| background-color: rgba(51,85,108, 0.9); | |
| background-image: linear-gradient(transparent, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .35) 50%, rgba(0, 0, 0, .4)); | |
| border: 1px solid #111; | |
| box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset, 0 2px 3px rgba(0, 0, 0, .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
| <input type="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
| <?php | |
| class FizzBuzz { | |
| public $start; | |
| public $end; | |
| public $strings; | |
| const FIZZBUZZ = 3; | |
| const BUZZ = 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
| var parse = function(tweet) { | |
| var chars = tweet.split(''); | |
| var buff = ''; | |
| var parts = []; | |
| var mode = 'text'; | |
| var alpha = 'abcdefghijklmnopqrstuvwxyz'; |
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 parse = function(tweet) { | |
| var chars = tweet.split(''); | |
| var buff = ''; | |
| var parts = []; | |
| var mode = 'text'; | |
| for (var key in chars) { | |
| var chr = chars[key]; |
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
| * { padding: 0; margin: 0; } | |
| body { | |
| font-family: "Helvetica Neue", Arial, sans-serif; | |
| } | |
| header { | |
| height: 50px; | |
| background: #3ac; | |
| line-height: 50px; |