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-image: url(http://www.bmwcarswallpapers.com/bulkupload//hd/2//BMW%20HD/BMW%20Pics%20Full%20HD.jpg); | |
| background-size: 100%; | |
| background-repeat: no-repeat; | |
| } | |
| .rainbow-shadow { | |
| position: relative; | |
| width: 200px; | |
| height: 200px; |
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
| /*Glamour*/ | |
| html { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height:100%; | |
| font-family: Arial; | |
| } |
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
| /* Construction */ | |
| span { | |
| display: block; | |
| position: relative; | |
| width: 60px; | |
| height: 60px; | |
| background: red; | |
| } | |
| b { |
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
| .photoFrame { | |
| display: inline-block; | |
| padding: 2px; | |
| background-color: #fff; | |
| border: solid 1px #DDE8EA; | |
| } | |
| .photoFrame img { | |
| display: 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
| div { | |
| width: 500px; | |
| border: red 1px solid; | |
| } | |
| b { | |
| display: block; | |
| overflow: hidden; | |
| } |
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 { | |
| width: 100px; | |
| margin-bottom: 10px; | |
| position: relative; | |
| } | |
| .static { | |
| /* position: static - блоки по умолчанию статичны */ | |
| overflow: hidden; | |
| width: 77px; |
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
| div { | |
| margin-bottom: 5px; | |
| } | |
| input { | |
| width: 200px; | |
| } |
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
| div { | |
| width: 100px; | |
| height: 100px; | |
| background:red; | |
| transition-delay: 2s; | |
| } | |
| div:hover { | |
| background: blue; | |
| transition: background .5s;} |
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
| .photoFrame { | |
| overflow: hidden; | |
| display: inline-block; | |
| padding: 2px; | |
| background-color: #fff; | |
| border: solid 1px #DDE8EA; | |
| } | |
| .photoFrame img { | |
| display: 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
| div { | |
| width: 100px; | |
| height: 100px; | |
| background:red; | |
| transition-delay: 2s; | |
| } | |
| div:active { | |
| background: blue; | |
| transition: background .5s; |
OlderNewer