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
| /** | |
| * table display test | |
| */ | |
| body { | |
| min-height:100%; | |
| padding-top: 100px | |
| } | |
| div { | |
| outline: 2px solid grey; |
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
| io = require 'socket.io' | |
| io.Socket::onEvent = (ev, cbs...) -> | |
| @on ev, (args...) -> | |
| cbList = cbs.slice() | |
| # set callback parameter if any | |
| fn = args[args.length-1] if typeof args[args.length-1] is 'function' |
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
| ul { | |
| overflow: hidden; | |
| *zoom: 1; | |
| height: 50px; | |
| background: #333; | |
| color: white; | |
| } | |
| li { |
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-color: blue*/ | |
| } | |
| ul { | |
| overflow: hidden; | |
| *zoom: 1; | |
| height: 150px; | |
| background: #333; | |
| color: white; |
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-color: blue*/ | |
| } | |
| ul { | |
| overflow: hidden; | |
| *zoom: 1; | |
| height: 50px; | |
| background: #333; | |
| color: white; |
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 { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| background: #6ACEDC; | |
| height: 500px | |
| width: 900px | |
| } | |
| h1 { | |
| color: white; | |
| text-transform: uppercase; | |
| font-size: 80px; |
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 { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| background: #6ACEDC; | |
| height: 500px | |
| width: 900px | |
| } | |
| h1 { | |
| color: white; | |
| text-transform: uppercase; | |
| font-size: 80px; |
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
| .row { | |
| border: 1px solid black; | |
| display: table; | |
| width: 100%; | |
| } | |
| .cell { | |
| display: table-cell; | |
| 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
| .trash { | |
| -webkit-appearance: none; | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| display: inline-block; | |
| outline: none; | |
| padding: 0; | |
| position: relative; | |
| width: 30px; |
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
| .circle { | |
| background: red; | |
| width: 50px; | |
| height: 50px; | |
| border-radius: 50%; | |
| } | |
OlderNewer