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
| import SimpleHTTPServer | |
| import SocketServer | |
| from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer | |
| PORT = 8000 | |
| class myHandler(BaseHTTPRequestHandler): | |
| #Handler for the GET requests | |
| def do_GET(self): |
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
| .conveyer { | |
| background: linen; | |
| position: relative; | |
| text-align: center; | |
| animation: moveright 20s infinite alternate; | |
| } | |
| @keyframes moveright { | |
| from { | |
| left: 0px; |
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
| .wrapper { | |
| display: -webkit-flex; | |
| -webkit-flex-direction: column; | |
| width: 400px; | |
| } | |
| .header { | |
| background: tomato; | |
| } |
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
| li:last-child, | |
| li:nth-last-child(2), | |
| li:nth-last-child(3) { | |
| color: orange; | |
| } |
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
| .ft { | |
| background: green; | |
| width: 100%; | |
| } | |
| .ft td:first-child { | |
| width:100%; | |
| } | |
| .ft .wrapper { |
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
| .container { | |
| outline: 1px solid red; | |
| width: 200px; | |
| overflow: visible; | |
| margin-top: 200px; | |
| margin-left: 200px; | |
| } | |
| .child { | |
| outline: 1px solid blue; |
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
| .parent { | |
| outline: 1px solid red; | |
| width: 300px; | |
| height: 500px; | |
| overflow: auto; | |
| } | |
| .content { | |
| outline: 1px solid orange; | |
| } |
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
| button.header { | |
| border: 1px solid red; | |
| background: linen; | |
| width: 300px; | |
| height: 50px; | |
| } |
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
| td { | |
| border: 1px solid red; | |
| border-radius: 5px 5px; | |
| } |
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 { | |
| border: 1px solid red; | |
| height: 200px; | |
| width: 400px; | |
| } | |
| thead td { | |
| min-height: 10px; | |
| } |
NewerOlder