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
| .g-hidden { | |
| } | |
| .black_square { | |
| position: relative; | |
| width: 20px; | |
| height: 20px; | |
| } |
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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .boxA { | |
| font-family: Arial; | |
| position: relative; | |
| width: 100px; | |
| height: 100px; |
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
| .boxA { | |
| width: 40px; | |
| height: 20px; | |
| background: pink; | |
| background: red; | |
| position: relative; | |
| } | |
| .boxA::before { |
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 { | |
| background: green; | |
| height: 100%; | |
| } | |
| body { | |
| background: red; | |
| margin: 0px; | |
| height: 100%; | |
| } |
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
| .basic { | |
| border: 1px solid black; | |
| width: 200px; | |
| height: 200px; | |
| box-shadow: 0 0 0px 20px red inset, | |
| 0 0 0px 40px orange inset, | |
| 0 0 0px 60px maroon inset; | |
| transition: box-shadow 2s; | |
| } |
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
| .basic { | |
| border:1px solid black; | |
| width: 200px; | |
| height: 200px; | |
| border-radius: 100px; | |
| box-shadow: 0 0 5px 5px pink inset; | |
| font-family: Helvetica, sans-serif; | |
| background: brown; | |
| } |
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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .block { | |
| border: 1px solid black; | |
| padding: 5px; | |
| width: 150px; | |
| height: 150px; | |
| } |
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
| /*! | |
| * jQuery UI 1.8.18 | |
| * | |
| * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |
| * Dual licensed under the MIT or GPL Version 2 licenses. | |
| * http://jquery.org/license | |
| * | |
| * http://docs.jquery.com/UI | |
| */ | |
| (function( $, undefined ) { |
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 { | |
| padding: 20px; | |
| } | |
| .range-plot { | |
| position: relative; | |
| background: white; | |
| cursor: pointer; | |
| 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
| .block { | |
| border: 5px solid red; | |
| outline: 5px solid green; | |
| width: 200px; | |
| height: 200px; | |
| padding: 10px; | |
| margin: 10px; | |
| } |