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 url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300); | |
| html{ | |
| height:100%; | |
| } | |
| body{ | |
| text-align:center; | |
| background:url('http://one-div.com/codepen/menu/bg.jpg')no-repeat; | |
| -webkit-background-size: cover; | |
| -moz-background-size: cover; | |
| background-size: cover; |
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
| /** | |
| * css3 transition | |
| */ | |
| body {-webkit-transition: background-color ease 2s;} | |
| @media (max-width: 500px) { | |
| body {background:yellow;} | |
| } | |
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
| /** | |
| * CSS3 transitions | |
| */ | |
| .box { | |
| width: 200px; | |
| height: 200px; | |
| background: #333; | |
| } | |
| .box:hover { | |
| background: #d1d1d1; |
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: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
| padding: 20px 50px 150px; | |
| font-size: 13px; | |
| text-align: center; | |
| background: #E3CAA1; | |
| } | |
| ul { | |
| text-align: left; |
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: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
| padding: 20px 50px 150px; | |
| font-size: 13px; | |
| text-align: center; | |
| background: #E3CAA1; | |
| } | |
| ul { | |
| text-align: left; |
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: #2c4762; | |
| } | |
| #loader{ | |
| width: 57px; | |
| height: 57px; | |
| margin: 100px auto; | |
| 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
| /* Common */ | |
| body { | |
| min-width: 800px; | |
| min-height: 400px; | |
| } | |
| .minimalsworld { | |
| width: 354px; | |
| height: 354px; | |
| background-color: #fff; | |
| 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
| /** | |
| * CSS3 Pong * | |
| */ | |
| @import url(http://fonts.googleapis.com/css?family=VT323); | |
| body{ | |
| background: #000; | |
| color:#070; | |
| font-family:'VT323', Courier, "Courier New", monospace; | |
| text-align:center |
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
| /* -- CSS3 - define rounded corners -- */ | |
| #box { | |
| width:300px; | |
| height:300px; | |
| background:#cccccc; | |
| -webkit-border-radius: 10px; | |
| -moz-border-radius: 10px; | |
| border-radius: 10px; | |
| } |
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
| /* code not necessary for the effect, just to make it pretty */ | |
| html { | |
| background-color: #EEE; | |
| overflow-y: scroll; | |
| } | |
| body { | |
| color: #333; | |
| font-family: Verdana; | |
| font-size: 14px; | |
| margin: 0 auto; |